diff --git a/CHANGES b/CHANGES index 487ced324..496fe4063 100644 --- a/CHANGES +++ b/CHANGES @@ -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). diff --git a/test/native-filechooser.cxx b/test/native-filechooser.cxx index d34ef2f06..81086047f 100644 --- a/test/native-filechooser.cxx +++ b/test/native-filechooser.cxx @@ -128,7 +128,8 @@ int main(int argc, char **argv) { " Text<Ctrl-I>*.txt\n" " C Files<Ctrl-I>*.{cxx,h,c,cpp}\n" " Tars<Ctrl-I>*.{tar,tar.gz}\n" - " Apps<Ctrl-I>*.app\n"); + " Apps<Ctrl-I>*.app\n" + "\n"); Fl_Button *but = new Fl_Button(win->w()-x-10, win->h()-25-10, 80, 25, "Pick File"); but->callback(PickFile_CB);