From b25d84c9bb828b79ed811b1c93fb36603d93d5fa Mon Sep 17 00:00:00 2001 From: jcid Date: Mon, 13 Oct 2008 14:07:50 +0200 Subject: . Minor update to README. --- README | 8 ++++++++ src/ui.cc | 7 ++++++- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/README b/README index 70201b11..80f697fb 100644 --- a/README +++ b/README @@ -19,6 +19,14 @@ In brief, a better dillo. * no FRAMES rendering * no https (there's a barebones prototype). +----- +FLTK2 +----- + + You can get the fltk2 library from fltk.org. +The recommended version is >= r6403. e.g. in: + + http://fltk.org/software.php?VERSION=2.0.x-r6403 ------------ 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(); -- cgit v1.2.3