summaryrefslogtreecommitdiff
path: root/src/Fl_File_Chooser.fl
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2002-05-24 14:02:56 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2002-05-24 14:02:56 +0000
commit262321f5e61bb801b6e169e697d9a716cfb0c439 (patch)
treedbcfc4bcd88b7bae8a5f9d4a1d1311a750508320 /src/Fl_File_Chooser.fl
parentfc7facb5e98a38d2e7a4776e6e91c9c2d301c877 (diff)
Fix cancel bug in file chooser with multiple-selection mode.
Allow all resizes in the file chooser. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2252 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl_File_Chooser.fl')
-rw-r--r--src/Fl_File_Chooser.fl9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/Fl_File_Chooser.fl b/src/Fl_File_Chooser.fl
index 6be09a616..a219cdfec 100644
--- a/src/Fl_File_Chooser.fl
+++ b/src/Fl_File_Chooser.fl
@@ -11,7 +11,8 @@ class Fl_File_Chooser {open
Fl_Window window {
label {Pick a File}
callback {fileName->value(directory_);
-window->hide();} open
+fileList->deselect();
+window->hide();} open selected
private xywh {99 225 375 325} resizable
code0 {if (title) window->label(title);}
code1 {\#include <stdio.h>}
@@ -76,13 +77,13 @@ window->hide();}
Fl_Button {} {
label Cancel
callback {fileName->value(directory_);
+fileList->deselect();
window->hide();}
private xywh {285 290 80 25}
code0 {o->label(fl_cancel);}
}
}
- code {window->size_range(375, 315, 375);
-fileList->filter(p);
+ code {fileList->filter(p);
type(t);
value(d);
callback_ = 0;
@@ -215,7 +216,7 @@ else
}
decl {static const char *filter_label;} {public
}
- decl {static Fl_File_Sort_F *sort;} {selected public
+ decl {static Fl_File_Sort_F *sort;} {public
}
}