diff --git a/sfx2/source/sidebar/TabBar.cxx b/sfx2/source/sidebar/TabBar.cxx index 96b00f54939e..4cc79c8bcd4c 100644 --- a/sfx2/source/sidebar/TabBar.cxx +++ b/sfx2/source/sidebar/TabBar.cxx @@ -245,7 +245,8 @@ bool TabBar::EventNotify(NotifyEvent& rEvent) mpAccel->init(comphelper::getProcessComponentContext(), mxFrame); } const OUString aCommand(mpAccel->findCommand(svt::AcceleratorExecute::st_VCLKey2AWTKey(rKeyCode))); - if (".uno:Sidebar" == aCommand) + if (".uno:Sidebar" == aCommand || + (rKeyCode.IsMod1() && rKeyCode.IsShift() && rKeyCode.GetCode() == KEY_F10)) return vcl::Window::EventNotify(rEvent); return true; }