Changeset 166946 in webkit


Ignore:
Timestamp:
Apr 8, 2014 12:42:08 PM (10 years ago)
Author:
ap@apple.com
Message:

FlagsChanged events are not delivered to input methods when using async text input
https://bugs.webkit.org/show_bug.cgi?id=131383

Reviewed by Anders Carlsson.

  • UIProcess/API/mac/WKView.mm: (-[WKView _interpretKeyEvent:completionHandler:]):

The early return is no longer needed.

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r166941 r166946  
     12014-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
    1112014-04-08  Tim Horton  <timothy_horton@apple.com>
    212
  • trunk/Source/WebKit2/UIProcess/API/mac/WKView.mm

    r166735 r166946  
    13501350    }
    13511351
    1352     // FIXME: Remove the special case for NSFlagsChanged once <rdar://16393434> is fixed.
    1353     if ([event type] == NSFlagsChanged)
    1354         return;
    1355 
    13561352    LOG(TextInput, "-> handleEventByInputMethod:%p %@", event, event);
    13571353    [[self inputContext] handleEventByInputMethod:event completionHandler:^(BOOL handled) {
Note: See TracChangeset for help on using the changeset viewer.