Browse Source

fix resizing (#65)

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.
tags/v1.5.0
theGreatWhiteShark GitHub 4 years ago
parent
commit
03e637f854
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
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_Group::current()->resizable( o ); */
} // Fl_Scalepack } // 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 ); { Fl_Text_Display *o = status_display = new Fl_Text_Display( X, Y + H - SH, W, SH );


Loading…
Cancel
Save