summaryrefslogtreecommitdiff
path: root/fluid/Fl_Widget_Type.cxx
diff options
context:
space:
mode:
authorMatthias Melcher <fltk@matthiasm.com>2005-07-14 13:16:17 +0000
committerMatthias Melcher <fltk@matthiasm.com>2005-07-14 13:16:17 +0000
commit7f526e136236802fccd9822ce87c509bf32e50d0 (patch)
tree62ef73549292dec25256a892c124153c2f5cc0b6 /fluid/Fl_Widget_Type.cxx
parent52960ea9038d1f5820453129db4652b012bda0fe (diff)
- Fixed Fl_Bitmap::copy code according to Stephans suggestions. Thanks! Good catch.
- Fixed some minor alignment in Fluid. - Live Mode window in Fluid is now double buffered to get rid of flicker. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4415 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'fluid/Fl_Widget_Type.cxx')
-rw-r--r--fluid/Fl_Widget_Type.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/fluid/Fl_Widget_Type.cxx b/fluid/Fl_Widget_Type.cxx
index 639a9cc2e..9660eda79 100644
--- a/fluid/Fl_Widget_Type.cxx
+++ b/fluid/Fl_Widget_Type.cxx
@@ -1504,7 +1504,7 @@ void live_mode_cb(Fl_Button*o,void *v) {
Fl_Group::current(0);
int w = live_widget->w();
int h = live_widget->h();
- live_window = new Fl_Window(w+20, h+55, "Fluid Live Mode Widget");
+ live_window = new Fl_Double_Window(w+20, h+55, "Fluid Live Mode Widget");
live_window->box(FL_FLAT_BOX);
live_window->color(FL_GREEN);
Fl_Group *rsz = new Fl_Group(0, h+20, 130, 35);