summaryrefslogtreecommitdiff
path: root/fluid
diff options
context:
space:
mode:
authorMatthias Melcher <fltk@matthiasm.com>2005-07-16 09:14:58 +0000
committerMatthias Melcher <fltk@matthiasm.com>2005-07-16 09:14:58 +0000
commite8ea433222eed921b190bb57b9e6f56fb3a8b3b1 (patch)
treea6f142f5b8712d6694c08a50973bc644af5d99d5 /fluid
parent478950c3bc358e1c55cc5c4e75ba42b84372c333 (diff)
Changing the 'private' flag would not reflect in the widget browser immediately.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4429 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'fluid')
-rw-r--r--fluid/Fl_Widget_Type.cxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/fluid/Fl_Widget_Type.cxx b/fluid/Fl_Widget_Type.cxx
index 9660eda79..89034db48 100644
--- a/fluid/Fl_Widget_Type.cxx
+++ b/fluid/Fl_Widget_Type.cxx
@@ -328,7 +328,10 @@ void name_public_cb(Fl_Light_Button* i, void* v) {
mod = 1;
}
}
- if (mod) set_modflag(1);
+ if (mod) {
+ set_modflag(1);
+ redraw_browser();
+ }
}
}