summaryrefslogtreecommitdiffstats
path: root/perl-install/harddrake/ui.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2002-11-20 14:36:59 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2002-11-20 14:36:59 +0000
commita019fbcdc1edd50e0cd0b01f6c4f190c4ece102f (patch)
treea8535c9f8367b8c808b006a087c4bacc2da5c533 /perl-install/harddrake/ui.pm
parent1f00d696d6517dff39301252122a51e5da46be46 (diff)
downloaddrakx-a019fbcdc1edd50e0cd0b01f6c4f190c4ece102f.tar
drakx-a019fbcdc1edd50e0cd0b01f6c4f190c4ece102f.tar.gz
drakx-a019fbcdc1edd50e0cd0b01f6c4f190c4ece102f.tar.bz2
drakx-a019fbcdc1edd50e0cd0b01f6c4f190c4ece102f.tar.xz
drakx-a019fbcdc1edd50e0cd0b01f6c4f190c4ece102f.zip
hide the "please wait" at the latest stage
Diffstat (limited to 'perl-install/harddrake/ui.pm')
-rw-r--r--perl-install/harddrake/ui.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/harddrake/ui.pm b/perl-install/harddrake/ui.pm
index e49e86d5c..4930f487f 100644
--- a/perl-install/harddrake/ui.pm
+++ b/perl-install/harddrake/ui.pm
@@ -265,10 +265,7 @@ sub new {
$SIG{CHLD} = sub { undef $pid; $statusbar->pop($sig_id) };
$w->{rwindow}->signal_connect(delete_event => \&quit_global);
- undef $wait;
- gtkset_mousecursor_normal();
$w->{rwindow}->set_position('center') unless $::isEmbedded;
- $w->{rwindow}->show_all();
foreach (['PRINTERS_DETECTION', N("/Autodetect printers")], ['MODEMS_DETECTION', N("/Autodetect modems")]) {
$check_boxes{$_->[0]} = $menubar->{factory}->get_widget("<main>".N("/Options").$_->[1]);
@@ -276,6 +273,9 @@ sub new {
$check_boxes{$_->[0]}->set_active($options{$_->[0]}); # restore saved values
}
+ $w->{rwindow}->show_all();
+ undef $wait;
+ gtkset_mousecursor_normal();
foreach ($module_cfg_button, $config_button) { $_->hide };
$in = 'interactive'->vnew('su', 'default') if $::isEmbedded;
$w->main;