summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>1998-11-06 16:00:45 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>1998-11-06 16:00:45 +0000
commitd9ddb41ac4712371cd8f2a925213e795a31f17f9 (patch)
tree34afd17fdbb01dc6a6ddd1fbc762e5f67f62f33f /src
parentdccfdf93e30154405a13f30a705bc29263acd917 (diff)
File chooser scrollbar redraw bug fix from Bill.
git-svn-id: file:///fltk/svn/fltk/trunk@65 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src')
-rw-r--r--src/fl_file_chooser.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fl_file_chooser.cxx b/src/fl_file_chooser.cxx
index a95b6c078..8f947f986 100644
--- a/src/fl_file_chooser.cxx
+++ b/src/fl_file_chooser.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: fl_file_chooser.cxx,v 1.4 1998/10/21 14:20:51 mike Exp $"
+// "$Id: fl_file_chooser.cxx,v 1.5 1998/11/06 16:00:45 mike Exp $"
//
// File chooser widget for the Fast Light Tool Kit (FLTK).
//
@@ -278,7 +278,7 @@ void FCB::set(const char* buf) {
prev_last = last;
}
list = last = 0;
- message = "reading..."; redraw(); Fl::flush();
+ message = "reading..."; redraw(); Fl::flush(); redraw();
strcpy(listed, buf);
dirend = nameend = bufdirend;
listed[dirend] = listed[dirend+1] = 0;
@@ -611,5 +611,5 @@ char* fl_file_chooser(const char* message, const char* pat, const char* fname)
}
//
-// End of "$Id: fl_file_chooser.cxx,v 1.4 1998/10/21 14:20:51 mike Exp $".
+// End of "$Id: fl_file_chooser.cxx,v 1.5 1998/11/06 16:00:45 mike Exp $".
//