summaryrefslogtreecommitdiff
path: root/sc/source/ui/cctrl
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/ui/cctrl')
-rw-r--r--sc/source/ui/cctrl/checklistmenu.cxx7
1 files changed, 7 insertions, 0 deletions
diff --git a/sc/source/ui/cctrl/checklistmenu.cxx b/sc/source/ui/cctrl/checklistmenu.cxx
index 4e524d527d9f..f1f8acd9de42 100644
--- a/sc/source/ui/cctrl/checklistmenu.cxx
+++ b/sc/source/ui/cctrl/checklistmenu.cxx
@@ -1035,6 +1035,13 @@ void ScCheckListMenuWindow::packWindow()
// Widen the window to fit the menu items.
maWndSize.Width() = maMenuSize.Width();
+ // Set proper window height based on the number of menu items.
+ if (maWndSize.Height() < maMenuSize.Height()*2.8)
+ maWndSize.Height() = maMenuSize.Height()*2.8;
+
+ // TODO: Make sure the window height never exceeds the height of the
+ // screen. Also do adjustment based on the number of check box items.
+
SetOutputSizePixel(maWndSize);
const StyleSettings& rStyle = GetSettings().GetStyleSettings();