summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
Diffstat (limited to 'sc')
-rw-r--r--sc/source/ui/cctrl/checklistmenu.cxx7
1 files changed, 1 insertions, 6 deletions
diff --git a/sc/source/ui/cctrl/checklistmenu.cxx b/sc/source/ui/cctrl/checklistmenu.cxx
index 413cf36704c0..6a8a51a0328e 100644
--- a/sc/source/ui/cctrl/checklistmenu.cxx
+++ b/sc/source/ui/cctrl/checklistmenu.cxx
@@ -1343,12 +1343,7 @@ bool ScCheckListMenuWindow::EventNotify(NotifyEvent& rNEvt)
const KeyEvent* pKeyEvent = rNEvt.GetKeyEvent();
const vcl::KeyCode& rCode = pKeyEvent->GetKeyCode();
const sal_uInt16 nCode = rCode.GetCode();
- if (rCode.IsMod2()) // Hack to prevent tdf#122772
- {
- if (nCode == KEY_DOWN || nCode == KEY_RIGHT)
- return true;
- }
- else
+ if (nCode != KEY_RETURN)
{
bool bShift = rCode.IsShift();
if (nCode == KEY_TAB)