summaryrefslogtreecommitdiffstats
path: root/perl-install/ugtk2.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/ugtk2.pm')
-rw-r--r--perl-install/ugtk2.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/ugtk2.pm b/perl-install/ugtk2.pm
index 5091536b5..5d788ba3f 100644
--- a/perl-install/ugtk2.pm
+++ b/perl-install/ugtk2.pm
@@ -351,7 +351,7 @@ sub create_box_with_title {
(map {
my $w = ref($_) ? $_ : Gtk2::Label->new($_);
gtkset_name($w, "Title");
- $::isWizard ? (gtkpack__(Gtk2::HBox->new(0,0), gtkset_size_request(Gtk2::Label->new, 20, 0), $w))
+ $::isWizard ? gtkpack__(Gtk2::HBox->new(0,0), gtkset_size_request(Gtk2::Label->new, 20, 0), $w)
: $w
} map { ref($_) ? $_ : warp_text($_) } @_),
if_($::isWizard, gtkset_size_request(Gtk2::Label->new, 0, 15)),