Changeset 245853 in webkit
- Timestamp:
- May 29, 2019, 10:23:16 AM (7 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
platform/gtk/PlatformKeyboardEventGtk.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r245850 r245853 1 2019-05-29 Ludovico de Nittis <ludovico.denittis@collabora.com> 2 3 Prepend KEY_ to the last key alias in PlatformEventKeyboardGtk 4 https://bugs.webkit.org/show_bug.cgi?id=198331 5 6 Reviewed by Michael Catanzaro. 7 8 No behavior change. 9 10 With the commit 11 https://bugs.webkit.org/show_bug.cgi?id=198326 12 A gdk key slipped away from the renaming. 13 14 * platform/gtk/PlatformKeyboardEventGtk.cpp: 15 (WebCore::modifiersForGdkKeyEvent): 16 1 17 2019-05-29 Zalan Bujtas <zalan@apple.com> 2 18 -
trunk/Source/WebCore/platform/gtk/PlatformKeyboardEventGtk.cpp
r245849 r245853 1331 1331 { 1332 1332 OptionSet<PlatformEvent::Modifier> modifiers; 1333 if (event->state & GDK_SHIFT_MASK || event->keyval == GDK_ 3270_BackTab)1333 if (event->state & GDK_SHIFT_MASK || event->keyval == GDK_KEY_3270_BackTab) 1334 1334 modifiers.add(PlatformEvent::Modifier::ShiftKey); 1335 1335 if (event->state & GDK_CONTROL_MASK)
Note:
See TracChangeset
for help on using the changeset viewer.