diff --git a/src/frontends/xforms/ChangeLog b/src/frontends/xforms/ChangeLog index 2720cb1738..08019f8ec6 100644 --- a/src/frontends/xforms/ChangeLog +++ b/src/frontends/xforms/ChangeLog @@ -1,3 +1,7 @@ +2002-02-01 Angus Leeming + + * FormGraphics.C (c-tor): prevent resizing of the dialog. + 2002-02-03 Herbert Voss * xforms_helpers.C: fix bug with unit "%" in diff --git a/src/frontends/xforms/FormGraphics.C b/src/frontends/xforms/FormGraphics.C index 594087e67c..53fa4f14fc 100644 --- a/src/frontends/xforms/FormGraphics.C +++ b/src/frontends/xforms/FormGraphics.C @@ -49,7 +49,7 @@ int const FILENAME_MAXCHARS = 1024; typedef FormCB > base_class; FormGraphics::FormGraphics(ControlGraphics & c) - : base_class(c, _("Graphics")) + : base_class(c, _("Graphics"), false) {}