Changeset 35535 in webkit


Ignore:
Timestamp:
Aug 4, 2008 7:03:34 AM (16 years ago)
Author:
Simon Hausmann
Message:

2008-08-04 Erik Bunce <elbunce@thehive.com>

Reviewed by Simon.

https://bugs.webkit.org/show_bug.cgi?id=20198

Allow Copy key sequence to work in non-editable areas.

Location:
trunk/WebKit/qt
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/qt/Api/qwebpage.cpp

    r35386 r35535  
    553553        if (action != QWebPage::NoWebAction) {
    554554            q->triggerAction(action);
     555            handled = true;
     556        }
     557    } else {
     558        if (ev == QKeySequence::Copy) {
     559            q->triggerAction(QWebPage::Copy);
    555560            handled = true;
    556561        }
  • trunk/WebKit/qt/ChangeLog

    r35481 r35535  
     12008-08-04  Erik Bunce  <elbunce@thehive.com>
     2
     3        Reviewed by Simon.
     4
     5        https://bugs.webkit.org/show_bug.cgi?id=20198
     6
     7        Allow Copy key sequence to work in non-editable areas.
     8
     9        * Api/qwebpage.cpp:
     10        (QWebPagePrivate::keyPressEvent):
     11
    1122008-07-31  Erik Bunce  <elbunce@thehive.com>
    213
Note: See TracChangeset for help on using the changeset viewer.