diff --git a/CHANGES b/CHANGES index b7c4aac18..ac0d0173b 100644 --- a/CHANGES +++ b/CHANGES @@ -2,6 +2,8 @@ CHANGES IN FLTK 1.1.8 - Documentation fixes (STR #1454, STR #1455, STR #1456, STR #1457, STR #1458, STR #1460, STR #1481, STR #1578) + - FLUID incorrectly opened the display when generating + source code for Fl_Help_View widgets (STR #1318) - Fl_Double_Window did not always show the scheme background image. - Fixed first window behavior in OS X (STR #1548) diff --git a/fluid/factory.cxx b/fluid/factory.cxx index f45624066..78723a167 100644 --- a/fluid/factory.cxx +++ b/fluid/factory.cxx @@ -624,8 +624,10 @@ public: virtual const char *type_name() {return "Fl_Help_View";} Fl_Widget *widget(int x,int y,int w,int h) { Fl_Help_View *myo = new Fl_Help_View(x,y,w,h); - myo->value("
This is a Fl_Help_View widget.
"); + if (!compile_only) { + myo->value("This is a Fl_Help_View widget.
"); + } return myo;} Fl_Widget_Type *_make() {return new Fl_Help_View_Type();} int pixmapID() { return 35; }