summaryrefslogtreecommitdiff
path: root/src/Fl_Menu_Bar.cxx
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>1998-11-10 14:40:18 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>1998-11-10 14:40:18 +0000
commita7dbe1ff3d427b8c48f42c1ede596266028cea57 (patch)
treefe9fc8bd487040dca75a9b6a68b0b541553ca019 /src/Fl_Menu_Bar.cxx
parentbb21ad727029ca68db0c7bfe43d54b793e6182a7 (diff)
Menu patches from Bill...
git-svn-id: file:///fltk/svn/fltk/trunk@82 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl_Menu_Bar.cxx')
-rw-r--r--src/Fl_Menu_Bar.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Fl_Menu_Bar.cxx b/src/Fl_Menu_Bar.cxx
index 618fd81f6..76730ceae 100644
--- a/src/Fl_Menu_Bar.cxx
+++ b/src/Fl_Menu_Bar.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: Fl_Menu_Bar.cxx,v 1.3 1998/10/21 14:20:11 mike Exp $"
+// "$Id: Fl_Menu_Bar.cxx,v 1.4 1998/11/10 14:40:18 mike Exp $"
//
// Menu bar widget for the Fast Light Tool Kit (FLTK).
//
@@ -30,7 +30,7 @@ void Fl_Menu_Bar::draw() {
draw_box();
if (!menu() || !menu()->text) return;
const Fl_Menu_Item* m;
- int X = x()+9;
+ int X = x()+6;
for (m=menu(); m->text; m = m->next()) {
m->draw(X, y(), 0, h(), this);
X += m->measure(0,this) + 16;
@@ -57,5 +57,5 @@ int Fl_Menu_Bar::handle(int event) {
}
//
-// End of "$Id: Fl_Menu_Bar.cxx,v 1.3 1998/10/21 14:20:11 mike Exp $".
+// End of "$Id: Fl_Menu_Bar.cxx,v 1.4 1998/11/10 14:40:18 mike Exp $".
//