|
From: <ho...@us...> - 2025-11-04 15:35:25
|
Revision: 15760
http://sourceforge.net/p/skim-app/code/15760
Author: hofman
Date: 2025-11-04 15:35:22 +0000 (Tue, 04 Nov 2025)
Log Message:
-----------
accessibility of control is implemented in the cell
Modified Paths:
--------------
trunk/SKFontWell.m
Modified: trunk/SKFontWell.m
===================================================================
--- trunk/SKFontWell.m 2025-11-04 10:32:46 UTC (rev 15759)
+++ trunk/SKFontWell.m 2025-11-04 15:35:22 UTC (rev 15760)
@@ -298,10 +298,6 @@
}
}
-- (NSString *)accessibilitySubrole {
- return @"AXFontWell";
-}
-
#pragma mark NSDraggingSource protocol
- (NSDragOperation)draggingSession:(NSDraggingSession *)session sourceOperationMaskForDraggingContext:(NSDraggingContext)context {
@@ -458,6 +454,10 @@
}
}
+- (NSString *)accessibilitySubrole {
+ return @"AXFontWell";
+}
+
- (NSString *)accessibilityRoleDescription {
return NSLocalizedString(@"font well", @"Accessibility description");
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|