mirror of
https://github.com/fltk/fltk.git
synced 2026-05-28 03:15:21 +08:00
Always redraw the directory buttons if the base class handled the
event. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2254 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
@@ -1,6 +1,8 @@
|
|||||||
CHANGES IN FLTK 1.1.0rc3
|
CHANGES IN FLTK 1.1.0rc3
|
||||||
|
|
||||||
- Documentation updates.
|
- Documentation updates.
|
||||||
|
- Fl_File_Input didn't update the directory buttons if a
|
||||||
|
callback was registered with the widget.
|
||||||
- The file chooser would return the last selected
|
- The file chooser would return the last selected
|
||||||
file(s) when cancel was pressed.
|
file(s) when cancel was pressed.
|
||||||
- The file chooser limited the resizing of the chooser
|
- The file chooser limited the resizing of the chooser
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
//
|
//
|
||||||
// "$Id: Fl_File_Input.cxx,v 1.1.2.2 2002/05/16 12:47:43 easysw Exp $"
|
// "$Id: Fl_File_Input.cxx,v 1.1.2.3 2002/05/24 14:25:04 easysw Exp $"
|
||||||
//
|
//
|
||||||
// File_Input header file for the Fast Light Tool Kit (FLTK).
|
// File_Input header file for the Fast Light Tool Kit (FLTK).
|
||||||
//
|
//
|
||||||
@@ -186,7 +186,7 @@ Fl_File_Input::handle(int event) // I - Event
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (Fl_Input::handle(event)) {
|
if (Fl_Input::handle(event)) {
|
||||||
if (changed()) damage(FL_DAMAGE_BAR);
|
damage(FL_DAMAGE_BAR);
|
||||||
return 1;
|
return 1;
|
||||||
} else return 0;
|
} else return 0;
|
||||||
}
|
}
|
||||||
@@ -253,5 +253,5 @@ Fl_File_Input::handle_button(int event) // I - Event
|
|||||||
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// End of "$Id: Fl_File_Input.cxx,v 1.1.2.2 2002/05/16 12:47:43 easysw Exp $".
|
// End of "$Id: Fl_File_Input.cxx,v 1.1.2.3 2002/05/24 14:25:04 easysw Exp $".
|
||||||
//
|
//
|
||||||
|
|||||||
Reference in New Issue
Block a user