Browse Source

fix resizing

Fixes #64

A small, resizable box in the bottom of the legacy GUI allowed the tree containing the session list to be scaled to zero width and thus to disappear.
pull/65/head
phil 4 years ago
parent
commit
79a94cdfa4
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      src/legacy-gui.cpp

+ 1
- 2
src/legacy-gui.cpp View File

@@ -958,8 +958,7 @@ public:
/* Fl_Group::current()->resizable( o ); */
} // Fl_Scalepack

{ Fl_Box *o = new Fl_Box( X + 300, Y + 30, 100, H - ( 30 + SH ));
Fl_Group::current()->resizable(o);
{ new Fl_Box( X + 1000, Y + 30, 100, H - ( 30 + SH ));
}

{ Fl_Text_Display *o = status_display = new Fl_Text_Display( X, Y + H - SH, W, SH );


Loading…
Cancel
Save