summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Melcher <fltk@matthiasm.com>2005-03-20 14:02:21 +0000
committerMatthias Melcher <fltk@matthiasm.com>2005-03-20 14:02:21 +0000
commita4786598bbb997fd0909a1113d70e53777ddaeb8 (patch)
tree5a414e6372fc57d86c90a0edd8ddabcfd079afe3
parent0bbcbe666d7f3f4a392b8072eff9356a650c6d65 (diff)
'Show/Hide Widget Bin menu item is 39, not 38
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4145 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
-rw-r--r--fluid/fluid.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/fluid/fluid.cxx b/fluid/fluid.cxx
index 879defac0..436649ebf 100644
--- a/fluid/fluid.cxx
+++ b/fluid/fluid.cxx
@@ -721,10 +721,10 @@ void toggle_widgetbin_cb(Fl_Widget *, void *) {
if (widgetbin_panel->visible()) {
widgetbin_panel->hide();
- Main_Menu[38].label("Show Widget &Bin...");
+ Main_Menu[39].label("Show Widget &Bin...");
} else {
widgetbin_panel->show();
- Main_Menu[38].label("Hide Widget &Bin");
+ Main_Menu[39].label("Hide Widget &Bin");
}
}