summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps_gtk.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>1999-12-14 21:06:07 +0000
committerPascal Rigaux <pixel@mandriva.com>1999-12-14 21:06:07 +0000
commite429fba02079ef644e4a85d849e11a381c9334b9 (patch)
treecbc799156a615c5016954dc2f0f7f24cef1da9de /perl-install/install_steps_gtk.pm
parent927f51ad73f141395cc9d644de0a3b1827513eaf (diff)
downloaddrakx-e429fba02079ef644e4a85d849e11a381c9334b9.tar
drakx-e429fba02079ef644e4a85d849e11a381c9334b9.tar.gz
drakx-e429fba02079ef644e4a85d849e11a381c9334b9.tar.bz2
drakx-e429fba02079ef644e4a85d849e11a381c9334b9.tar.xz
drakx-e429fba02079ef644e4a85d849e11a381c9334b9.zip
no_comment
Diffstat (limited to 'perl-install/install_steps_gtk.pm')
-rw-r--r--perl-install/install_steps_gtk.pm5
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;