diff options
author | Pascal Rigaux <pixel@mandriva.com> | 1999-12-14 21:06:07 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 1999-12-14 21:06:07 +0000 |
commit | e429fba02079ef644e4a85d849e11a381c9334b9 (patch) | |
tree | cbc799156a615c5016954dc2f0f7f24cef1da9de /perl-install/install_steps_gtk.pm | |
parent | 927f51ad73f141395cc9d644de0a3b1827513eaf (diff) | |
download | drakx-backup-do-not-use-e429fba02079ef644e4a85d849e11a381c9334b9.tar drakx-backup-do-not-use-e429fba02079ef644e4a85d849e11a381c9334b9.tar.gz drakx-backup-do-not-use-e429fba02079ef644e4a85d849e11a381c9334b9.tar.bz2 drakx-backup-do-not-use-e429fba02079ef644e4a85d849e11a381c9334b9.tar.xz drakx-backup-do-not-use-e429fba02079ef644e4a85d849e11a381c9334b9.zip |
no_comment
Diffstat (limited to 'perl-install/install_steps_gtk.pm')
-rw-r--r-- | perl-install/install_steps_gtk.pm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/perl-install/install_steps_gtk.pm b/perl-install/install_steps_gtk.pm index 38ef48745..db1461b47 100644 --- a/perl-install/install_steps_gtk.pm +++ b/perl-install/install_steps_gtk.pm @@ -732,7 +732,10 @@ sub create_steps_window { my $w = new Gtk::Button(''); $w->set_name($t); $w->set_usize(0, 7); - gtksignal_connect($w, clicked => sub { install_theme($o, $t); die "theme_changed\n" }); + gtksignal_connect($w, clicked => sub { + $::setstep or return; #- just as setstep s + install_theme($o, $t); die "theme_changed\n" + }); } @themes))); $w->show; $o->{steps_window} = $w; |