diff options
author | Thomas Hartmann <Thomas.Hartmann@nokia.com> | 2009-04-08 12:00:23 (GMT) |
---|---|---|
committer | Thomas Hartmann <Thomas.Hartmann@nokia.com> | 2009-04-08 12:00:23 (GMT) |
commit | f034683be4d84bacd874b24a846d1833f4d4f4df (patch) | |
tree | 98506b3267fcb0235d0fa6a5c31e5234e5dcac23 /src/gui | |
parent | be3b8acbd311b9cbeaa7c87b4f34b2e33b4a7fa3 (diff) | |
download | Qt-f034683be4d84bacd874b24a846d1833f4d4f4df.zip Qt-f034683be4d84bacd874b24a846d1833f4d4f4df.tar.gz Qt-f034683be4d84bacd874b24a846d1833f4d4f4df.tar.bz2 |
Fixes: No navigation with alt for the native menubar (Windows CE)
RevBy: Mauricek
AutoTest: tst_QMenuBar::check_altPress()
Details: We do not allow alt navigation with the windows mobile style
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/styles/qwindowsmobilestyle.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gui/styles/qwindowsmobilestyle.cpp b/src/gui/styles/qwindowsmobilestyle.cpp index c52c700..1c03b9e 100644 --- a/src/gui/styles/qwindowsmobilestyle.cpp +++ b/src/gui/styles/qwindowsmobilestyle.cpp @@ -3401,6 +3401,9 @@ int QWindowsMobileStyle::styleHint(StyleHint hint, const QStyleOption *opt, cons case SH_ScrollBar_ContextMenu: ret = false; break; + case SH_MenuBar_AltKeyNavigation: + ret = false; + break; default: ret = QWindowsStyle::styleHint(hint, opt, widget, returnData); break; |