Skip to content

Commit

Permalink
Changing the 'private' flag would not reflect in the widget browser i…
Browse files Browse the repository at this point in the history
…mmediately.

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4429 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
  • Loading branch information
Matthias Melcher committed Jul 16, 2005
1 parent 478950c commit e8ea433
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES
Expand Up @@ -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)
Expand Down
5 changes: 4 additions & 1 deletion fluid/Fl_Widget_Type.cxx
Expand Up @@ -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();
}
}
}

Expand Down

0 comments on commit e8ea433

Please sign in to comment.