Changeset 166946 in webkit
- Timestamp:
- Apr 8, 2014, 12:42:08 PM (11 years ago)
- Location:
- trunk/Source/WebKit2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit2/ChangeLog
r166941 r166946 1 2014-04-08 Alexey Proskuryakov <ap@apple.com> 2 3 FlagsChanged events are not delivered to input methods when using async text input 4 https://bugs.webkit.org/show_bug.cgi?id=131383 5 6 Reviewed by Anders Carlsson. 7 8 * UIProcess/API/mac/WKView.mm: (-[WKView _interpretKeyEvent:completionHandler:]): 9 The early return is no longer needed. 10 1 11 2014-04-08 Tim Horton <timothy_horton@apple.com> 2 12 -
trunk/Source/WebKit2/UIProcess/API/mac/WKView.mm
r166735 r166946 1350 1350 } 1351 1351 1352 // FIXME: Remove the special case for NSFlagsChanged once <rdar://16393434> is fixed.1353 if ([event type] == NSFlagsChanged)1354 return;1355 1356 1352 LOG(TextInput, "-> handleEventByInputMethod:%p %@", event, event); 1357 1353 [[self inputContext] handleEventByInputMethod:event completionHandler:^(BOOL handled) {
Note:
See TracChangeset
for help on using the changeset viewer.