japhy has asked for the wisdom of the Perl Monks concerning the following question:
For some reason, the window allows itself to be resized vertically so it can be 200x200. Can other people verify that this happens? I'm on Windows, but non-Windows verification would make me happier.#!/usr/bin/perl use Gtk2 -init; $window = Gtk2::Window->new; $window->set_size_request(200, 100); $window->set_resizable(0); $window->add(Gtk2::Label->new("Square?")); $window->show_all; Gtk2->main;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Gtk2 'window' widget
by traveler (Parson) on Mar 17, 2005 at 00:03 UTC | |
|
Re: Gtk2 'window' widget
by Errto (Vicar) on Mar 17, 2005 at 00:53 UTC |