diff options
| author | Matthias Melcher <github@matthiasm.com> | 2024-04-26 19:30:47 +0200 |
|---|---|---|
| committer | Matthias Melcher <github@matthiasm.com> | 2024-04-26 19:30:47 +0200 |
| commit | 445dcb829dd22f0e809538cdfe4a6c3535b2057f (patch) | |
| tree | 5c2f3f8c706c4ae64cf404f7393f89858e951dbd /fluid/Fl_Window_Type.cxx | |
| parent | 1408a87425162f4523d3a4f6c1b9615c1c62ea0f (diff) | |
FLUID: Fix live resize for windows and tabs
Diffstat (limited to 'fluid/Fl_Window_Type.cxx')
| -rw-r--r-- | fluid/Fl_Window_Type.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fluid/Fl_Window_Type.cxx b/fluid/Fl_Window_Type.cxx index b68af4406..2e77d386c 100644 --- a/fluid/Fl_Window_Type.cxx +++ b/fluid/Fl_Window_Type.cxx @@ -1519,7 +1519,7 @@ void Fl_Widget_Class_Type::write_code2(Fd_Code_Writer& f) { // live mode support Fl_Widget *Fl_Window_Type::enter_live_mode(int) { - Fl_Window *win = new Fl_Window(o->x(), o->y(), o->w(), o->h()); + Fl_Window *win = new Fl_Window(10, 10, o->w(), o->h()); return propagate_live_mode(win); } |
