Changeset 757 for trunk/src


Ignore:
Timestamp:
Jun 22, 2010, 6:33:03 PM (15 years ago)
Author:
Dmitry A. Kuminov
Message:

webkit: Attempted to fix broken input on keyboards using AltGr as a shift modifier (see #165).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/3rdparty/webkit/WebKit/qt/WebCoreSupport/EditorClientQt.cpp

    r651 r757  
    250250
    251251bool EditorClientQt::isEditable()
    252 { 
     252{
    253253    return m_page->isContentEditable();
    254254}
     
    435435            default:
    436436                if (kevent->type() != PlatformKeyboardEvent::KeyDown && !kevent->ctrlKey()
    437 #ifndef Q_WS_MAC
     437#if
    438438                    // We need to exclude checking for Alt because it is just a different Shift
    439439                    && !kevent->altKey()
     
    605605        if (!active) {
    606606            // Setting the Qt::WA_InputMethodEnabled attribute true and Qt::ImhHiddenText flag
    607             // for password fields. The Qt platform is responsible for determining which widget 
     607            // for password fields. The Qt platform is responsible for determining which widget
    608608            // will receive input method events for password fields.
    609609            Frame* frame = m_page->d->page->focusController()->focusedOrMainFrame();
Note: See TracChangeset for help on using the changeset viewer.