summaryrefslogtreecommitdiff
path: root/src/ui.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui.cc')
-rw-r--r--src/ui.cc7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/ui.cc b/src/ui.cc
index 8b50edd8..87fab74f 100644
--- a/src/ui.cc
+++ b/src/ui.cc
@@ -564,7 +564,12 @@ Group *UI::make_panel(int ww)
g1->begin();
// File menu
if (PanelSize == P_large) {
- make_filemenu_button();
+ g3 = new Group(0,0,ww,lh);
+ g3->box(FLAT_BOX);
+ Widget *bn = make_filemenu_button();
+ g3->add(bn);
+ g3->add_resizable(*new InvisibleBox(bn->w(),0,ww - bn->w(),lh));
+
g2 = new Group(0,fh,ww,lh);
g2->begin();
pg = make_location();