diff options
author | jcid <devnull@localhost> | 2008-10-13 14:07:50 +0200 |
---|---|---|
committer | jcid <devnull@localhost> | 2008-10-13 14:07:50 +0200 |
commit | b25d84c9bb828b79ed811b1c93fb36603d93d5fa (patch) | |
tree | 9d28b02acaa575b79d028719251af14378b5d3c5 /src | |
parent | 3db01118ae59913c93f0a88918b77e08c5847125 (diff) |
. Minor update to README.
Diffstat (limited to 'src')
-rw-r--r-- | src/ui.cc | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -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(); |