Skip to content
Snippets Groups Projects
Commit ebec42f1 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

1.1 bug workaround

parent b054fdde
No related branches found
No related tags found
No related merge requests found
// $Id: Callbacks.cpp,v 1.121 2002-05-07 05:32:20 geuzaine Exp $ // $Id: Callbacks.cpp,v 1.122 2002-05-13 23:15:40 geuzaine Exp $
#include <sys/types.h> #include <sys/types.h>
#include <signal.h> #include <signal.h>
...@@ -58,8 +58,7 @@ static Fl_File_Chooser *fc = NULL; ...@@ -58,8 +58,7 @@ static Fl_File_Chooser *fc = NULL;
int file_chooser(int multi, const char* message, const char* pat){ int file_chooser(int multi, const char* message, const char* pat){
if (!fc) { if (!fc) {
fc = new Fl_File_Chooser(".", pat, multi ? Fl_File_Chooser::MULTI : fc = new Fl_File_Chooser(".", pat, Fl_File_Chooser::CREATE, message);
Fl_File_Chooser::CREATE, message);
} }
else { else {
if (fc->value() && if (fc->value() &&
...@@ -73,10 +72,15 @@ int file_chooser(int multi, const char* message, const char* pat){ ...@@ -73,10 +72,15 @@ int file_chooser(int multi, const char* message, const char* pat){
else i = strlen(q); else i = strlen(q);
p[i] = 0; p[i] = 0;
} }
fc->type(multi ? Fl_File_Chooser::MULTI : Fl_File_Chooser::CREATE);
fc->filter(pat); fc->filter(pat);
fc->label(message); fc->label(message);
} }
if(multi)
fc->type(Fl_File_Chooser::MULTI);
else
fc->type(Fl_File_Chooser::CREATE);
fc->show(); fc->show();
while (fc->shown()) Fl::wait(); while (fc->shown()) Fl::wait();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment