Index: Source/web/PopupListBox.cpp |
diff --git a/Source/web/PopupListBox.cpp b/Source/web/PopupListBox.cpp |
index 853ad3723cdb8b085fc424fe8776a5d801b78194..269238c8ced5f7a3107cbdb94f511b122a4b5920 100644 |
--- a/Source/web/PopupListBox.cpp |
+++ b/Source/web/PopupListBox.cpp |
@@ -243,6 +243,9 @@ bool PopupListBox::handleKeyEvent(const PlatformKeyboardEvent& event) |
break; |
} |
+ if (event.altKey() && event.keyIdentifier() == "Down") |
keishi
2014/07/03 07:13:38
We want to support alt+up too.
Habib Virji
2014/07/03 17:24:04
Done.
|
+ hidePopup(); |
+ |
if (m_originalIndex != m_selectedIndex) { |
// Keyboard events should update the selection immediately (but we don't |
// want to fire the onchange event until the popup is closed, to match |