From 05170b4e2f949dc0190029815b98672a8896f940 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Thu, 28 Aug 2003 18:23:51 +0000 Subject: fix dialogs heigh --- perl-install/standalone/drakconnect | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'perl-install/standalone/drakconnect') diff --git a/perl-install/standalone/drakconnect b/perl-install/standalone/drakconnect index 3be294c64..f08ff6758 100755 --- a/perl-install/standalone/drakconnect +++ b/perl-install/standalone/drakconnect @@ -112,7 +112,7 @@ $button_del->signal_connect(clicked => sub { $button_del->set_sensitive(network::netconnect::get_profiles() > 1); my $button_new = Gtk2::Button->new(N("New profile...")); $button_new->signal_connect(clicked => sub { - my $dialog = _create_dialog("New profile..."); + my $dialog = _create_dialog("New profile...", { small => 1 }); my $entry_dialog = Gtk2::Entry->new; gtkpack($dialog->vbox, Gtk2::Label->new(N("Name of the profile to create (the new profile is created as a copy of the current one) :")), @@ -255,7 +255,7 @@ $window1->{window}->add( gtksignal_connect(Gtk2::Button->new(N("Cancel")), clicked => \&quit_global), gtksignal_connect(Gtk2::Button->new(N("Ok")), clicked => sub { if ($button_apply->get('sensitive')) { - my $dialog = _create_dialog(N("Please wait")); + my $dialog = _create_dialog(N("Please wait"), { small => 1 }); gtkpack($dialog->vbox, Gtk2::Label->new(N("Please Wait... Applying the configuration"))); $dialog->show_all; @@ -556,7 +556,7 @@ sub configure_net { Gtk2->main_quit; }; if (!$netcnx->{type}) { - $dialog = _create_dialog(N("LAN configuration")); + $dialog = _create_dialog(N("LAN configuration"), { small => 1 }); $dialog->vbox->add(Gtk2::Label->new(N("You don't have an Internet connection. Create one first by clicking on 'Configure'"))); gtkpack($dialog->action_area, -- cgit v1.2.1