diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2003-03-04 07:24:21 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2003-03-04 07:24:21 +0000 |
commit | 96e796773dd9a819f49f02da68e9dbedf9aea6e0 (patch) | |
tree | bbbd7b8df2ca0324c08a0edcf80f7a1c4f1ec08b /perl-install/standalone/drakboot | |
parent | 7afeeaa01cf8a6d07e1ca20d970aa24f319aa08c (diff) | |
download | drakx-96e796773dd9a819f49f02da68e9dbedf9aea6e0.tar drakx-96e796773dd9a819f49f02da68e9dbedf9aea6e0.tar.gz drakx-96e796773dd9a819f49f02da68e9dbedf9aea6e0.tar.bz2 drakx-96e796773dd9a819f49f02da68e9dbedf9aea6e0.tar.xz drakx-96e796773dd9a819f49f02da68e9dbedf9aea6e0.zip |
remove debuging assertions (as spoted by gc)
Diffstat (limited to 'perl-install/standalone/drakboot')
-rwxr-xr-x | perl-install/standalone/drakboot | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/standalone/drakboot b/perl-install/standalone/drakboot index c556f62d1..7749603aa 100755 --- a/perl-install/standalone/drakboot +++ b/perl-install/standalone/drakboot @@ -304,8 +304,8 @@ Click on Configure to launch the setup wizard.", $lilogrub), ) ); -$auto_buttons[0]->signal_connect('toggled' => sub { print "TOG\n"; $auto_box->set_sensitive($auto_buttons[0]->get_active()) }); -$auto_buttons[1]->signal_connect('toggled' => sub { print "TOG\n"; $auto_box->set_sensitive(!$auto_buttons[1]->get_active()) }); +$auto_buttons[0]->signal_connect('toggled' => sub { $auto_box->set_sensitive($auto_buttons[0]->get_active()) }); +$auto_buttons[1]->signal_connect('toggled' => sub { $auto_box->set_sensitive(!$auto_buttons[1]->get_active()) }); $auto_buttons[0]->set_active(1) if $auto_mode->{autologin}; $auto_buttons[1]->set_active(1) if !$auto_mode->{autologin}; |