diff options
| author | Bill Spitzak <spitzak@gmail.com> | 1999-02-25 19:09:11 +0000 |
|---|---|---|
| committer | Bill Spitzak <spitzak@gmail.com> | 1999-02-25 19:09:11 +0000 |
| commit | 82877b2eb6e29361e682a4a86144ec1daa046a5e (patch) | |
| tree | 10ffe7f54e42c6d93294c5f051954c8158f2c086 /test/menubar.cxx | |
| parent | 38d8473088e02d4afdac847d08c5fbc7b79fcdcf (diff) | |
Fix for Curtis so that the height of a title of a popup menu is not
affected by the height of the Fl_Menu_Button.
git-svn-id: file:///fltk/svn/fltk/trunk@340 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'test/menubar.cxx')
| -rw-r--r-- | test/menubar.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/menubar.cxx b/test/menubar.cxx index 0d9fe6ec9..4ec2f97ed 100644 --- a/test/menubar.cxx +++ b/test/menubar.cxx @@ -1,5 +1,5 @@ // -// "$Id: menubar.cxx,v 1.5 1999/01/07 19:17:58 mike Exp $" +// "$Id: menubar.cxx,v 1.6 1999/02/25 19:09:11 bill Exp $" // // Menubar test program for the Fast Light Tool Kit (FLTK). // @@ -207,11 +207,12 @@ int main(int argc, char **argv) { Fl_Toggle_Button t(250,50,150,25,"MicroSoft Style"); t.callback(button_cb); window.resizable(&mb); + window.size_range(300,20); window.end(); window.show(argc, argv); return Fl::run(); } // -// End of "$Id: menubar.cxx,v 1.5 1999/01/07 19:17:58 mike Exp $". +// End of "$Id: menubar.cxx,v 1.6 1999/02/25 19:09:11 bill Exp $". // |
