summaryrefslogtreecommitdiff
path: root/vcl/source/window
diff options
context:
space:
mode:
authorStephan Schäfer <ssa@openoffice.org>2002-04-25 11:19:03 +0000
committerStephan Schäfer <ssa@openoffice.org>2002-04-25 11:19:03 +0000
commit18671614cfdd2bcb935db59fe92b0de3a6ed578c (patch)
tree6996fe19c59efeb3b5243e047aa9cf5b2107815d /vcl/source/window
parent2612c0a416b5f10df49eb93c1c371a1ef67640dc (diff)
#98862# activate menu bar only whithout shift
Diffstat (limited to 'vcl/source/window')
-rw-r--r--vcl/source/window/menu.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/source/window/menu.cxx b/vcl/source/window/menu.cxx
index c7b8555a8fdf..ed7fe970ac08 100644
--- a/vcl/source/window/menu.cxx
+++ b/vcl/source/window/menu.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: menu.cxx,v $
*
- * $Revision: 1.39 $
+ * $Revision: 1.40 $
*
- * last change: $Author: ssa $ $Date: 2002-04-24 14:41:23 $
+ * last change: $Author: ssa $ $Date: 2002-04-25 12:16:59 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -3700,7 +3700,7 @@ BOOL MenuBarWindow::ImplHandleKeyEvent( const KeyEvent& rKEvent, BOOL bFromMenu
}
}
- if ( nCode == KEY_MENU )
+ if ( nCode == KEY_MENU && !rKEvent.GetKeyCode().IsShift() ) // only F10, not Shift-F10
{
mbAutoPopup = FALSE;
if ( nHighlightedItem == ITEMPOS_INVALID )