summaryrefslogtreecommitdiffstats
path: root/perl-install/interactive/gtk.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/interactive/gtk.pm')
-rw-r--r--perl-install/interactive/gtk.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/interactive/gtk.pm b/perl-install/interactive/gtk.pm
index 33577fe7f..6ebeb5bf3 100644
--- a/perl-install/interactive/gtk.pm
+++ b/perl-install/interactive/gtk.pm
@@ -405,7 +405,7 @@ sub ask_fromW {
} elsif ($e->{type} eq 'bool') {
$w = Gtk2::CheckButton->new($e->{text});
$w->signal_connect(clicked => $changed);
- $set = sub { $w->set_active($_[0]) };
+ $set = sub { $w->set_active($_[0] ? 1 : 0) };
$get = sub { $w->get_active };
$width = length $e->{text};
} elsif ($e->{type} eq 'label') {