summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES1
-rw-r--r--fluid/Fl_Widget_Type.cxx5
2 files changed, 5 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index 5901d132b..847b7c9a3 100644
--- a/CHANGES
+++ b/CHANGES
@@ -2,6 +2,7 @@ CHANGES IN FLTK 1.1.7
- Documentation fixes (STR #648, STR #692, STR #730, STR
#744, STR #745, STR #942)
+ - Fixed Fluid redraw issue (STR #912)
- Added 32bit BMP Image file format support (STR #918)
- Value Sliders would not receive focus when clicked on (STR #911)
- Added redraw of some widgets to show focus change (STR #910)
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();
+ }
}
}