Changeset 71203 in webkit


Ignore:
Timestamp:
Nov 2, 2010 7:18:04 PM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2010-11-02 Jing Jin <jjin@apple.com>

Reviewed by Alexey Proskuryakov.

Key down calls are not being sent to the application.
https://bugs.webkit.org/show_bug.cgi?id=48867

  • UIProcess/API/mac/WKView.mm: (-[WKView keyDown:]): Call super when ignoring a key down.
Location:
trunk/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit2/ChangeLog

    r71188 r71203  
     12010-11-02  Jing Jin  <jjin@apple.com>
     2
     3        Reviewed by Alexey Proskuryakov.
     4
     5        Key down calls are not being sent to the application.
     6        https://bugs.webkit.org/show_bug.cgi?id=48867
     7
     8        * UIProcess/API/mac/WKView.mm:
     9        (-[WKView keyDown:]): Call super when ignoring a key down.
     10
    1112010-11-02  Anders Carlsson  <andersca@apple.com>
    212
  • trunk/WebKit2/UIProcess/API/mac/WKView.mm

    r71130 r71203  
    397397        [_data->_keyDownEventBeingResent release];
    398398        _data->_keyDownEventBeingResent = nil;
     399        [super keyDown:theEvent];
    399400        return;
    400401    }
Note: See TracChangeset for help on using the changeset viewer.