diff options
| -rw-r--r-- | CHANGES | 2 | ||||
| -rw-r--r-- | src/Fl_Window.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,7 @@ CHANGES IN FLTK 1.3.0 + - Fixed possibility of wrong flags() in Fl_Window::iconlabel() + (STR #2161) - Fixed Scrollbar events when max is less than min (STR #2283) - Added argument-less constructor in Fuid Widget Class - Fixed menu item counting issue in Fluid (STR #2322) diff --git a/src/Fl_Window.cxx b/src/Fl_Window.cxx index 692aa255e..a06ac29cd 100644 --- a/src/Fl_Window.cxx +++ b/src/Fl_Window.cxx @@ -156,9 +156,7 @@ void Fl_Window::copy_label(const char *a) { void Fl_Window::iconlabel(const char *iname) { - unsigned saveflags = flags(); label(label(), iname); - set_flag(saveflags); } // the Fl::atclose pointer is provided for back compatibility. You |
