summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps_gtk.pm
diff options
context:
space:
mode:
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;