Browse Source

Fix test/native-filechooser help display artefact (STR #3349).

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@12080 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
pull/49/head
Albrecht Schlosser 9 years ago
parent
commit
7c248d5ec7
  1. 1
      CHANGES
  2. 3
      test/native-filechooser.cxx

1
CHANGES

@ -2,6 +2,7 @@ CHANGES IN FLTK 1.3.4rc4 RELEASED: Nov ?? 2016 @@ -2,6 +2,7 @@ CHANGES IN FLTK 1.3.4rc4 RELEASED: Nov ?? 2016
Bug fixes and other improvements
- Fix test/native-filechooser help display artefact (STR #3349).
- MacOS: fix a crash when closing a fullscreen window.
- Accept empty Fl_Pixmap in Fl_RGB_Image c'tor (STR #3348).

3
test/native-filechooser.cxx

@ -128,7 +128,8 @@ int main(int argc, char **argv) { @@ -128,7 +128,8 @@ int main(int argc, char **argv) {
" Text<font color=#55f>&lt;Ctrl-I&gt;</font>*.txt\n"
" C Files<font color=#55f>&lt;Ctrl-I&gt;</font>*.{cxx,h,c,cpp}\n"
" Tars<font color=#55f>&lt;Ctrl-I&gt;</font>*.{tar,tar.gz}\n"
" Apps<font color=#55f>&lt;Ctrl-I&gt;</font>*.app\n");
" Apps<font color=#55f>&lt;Ctrl-I&gt;</font>*.app\n"
"</pre>\n");
Fl_Button *but = new Fl_Button(win->w()-x-10, win->h()-25-10, 80, 25, "Pick File");
but->callback(PickFile_CB);

Loading…
Cancel
Save