diff options
| author | Matthias Melcher <github@matthiasm.com> | 2024-01-14 01:42:05 +0100 |
|---|---|---|
| committer | Matthias Melcher <github@matthiasm.com> | 2024-01-14 01:42:05 +0100 |
| commit | 5c90938aa3aa6dcb6f941e8f07937ae1d8951c17 (patch) | |
| tree | 8682dfc4e8eab895c34e70652a9392e91247f664 /FL | |
| parent | be1c96b98ac71bd71aeb08066ef22ee57171da4c (diff) | |
#887: Fixes FLTK file chooser not releasing preview image.
...when hidden
Diffstat (limited to 'FL')
| -rw-r--r-- | FL/Fl_File_Chooser.H | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/FL/Fl_File_Chooser.H b/FL/Fl_File_Chooser.H index 5c1276a12..4b7efa2f8 100644 --- a/FL/Fl_File_Chooser.H +++ b/FL/Fl_File_Chooser.H @@ -1,7 +1,7 @@ // // Fl_File_Chooser dialog for the Fast Light Tool Kit (FLTK). // -// Copyright 1998-2021 by Bill Spitzak and others. +// Copyright 1998-2024 by Bill Spitzak and others. // // This library is free software. Distribution and use rights are outlined in // the file "COPYING" which should have been included with this file. If this @@ -145,7 +145,6 @@ public: const char * filter(); int filter_value(); void filter_value(int f); - void hide(); void iconsize(uchar s); uchar iconsize(); void label(const char *l); @@ -161,6 +160,7 @@ public: void rescan(); void rescan_keep_filename(); void show(); + void hide(); int shown(); void textcolor(Fl_Color c); Fl_Color textcolor(); |
