10.12 introduced touch types
typedef NS_ENUM(NSInteger, NSTouchType) {
NSTouchTypeDirect, // A direct touch from a finger (on a screen)
NSTouchTypeIndirect, // An indirect touch (not a screen)
} NS_ENUM_AVAILABLE_MAC(10_12_2);
Our code uses normalizedPosition selector which produce crash for NSTouchTypeDirect eventsJDK-8172847 .
We should check that touch events works correctly on touch screens.
typedef NS_ENUM(NSInteger, NSTouchType) {
NSTouchTypeDirect, // A direct touch from a finger (on a screen)
NSTouchTypeIndirect, // An indirect touch (not a screen)
} NS_ENUM_AVAILABLE_MAC(10_12_2);
Our code uses normalizedPosition selector which produce crash for NSTouchTypeDirect events
We should check that touch events works correctly on touch screens.
- relates to
-
JDK-8172847 [macos] If you hit the escape key repeatedly to close the subwindow, the process crashes
-
- Resolved
-