From: Vadim Zeitlin Date: Wed, 28 Nov 2012 23:55:53 +0000 (+0000) Subject: Handle Shift-TAB correctly in wxOSX/Carbon wxComboBox. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/eff339168e77e6a07d686824ff78df2dc7a866d9 Handle Shift-TAB correctly in wxOSX/Carbon wxComboBox. The navigation event direction should depend on Shift key state. See #3821. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73054 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/osx/carbon/combobox.cpp b/src/osx/carbon/combobox.cpp index 387f7402a5..73bbbad274 100644 --- a/src/osx/carbon/combobox.cpp +++ b/src/osx/carbon/combobox.cpp @@ -58,7 +58,7 @@ protected: { wxNavigationKeyEvent NavEvent; NavEvent.SetEventObject(this); - NavEvent.SetDirection(true); + NavEvent.SetDirection(!event.ShiftDown()); NavEvent.SetWindowChange(false); // Get the parent of the combo and have it process the navigation?