summaryrefslogtreecommitdiffstats
path: root/perl-install/install/gtk.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2008-07-24 17:31:11 +0000
committerThierry Vignaud <tv@mandriva.org>2008-07-24 17:31:11 +0000
commit927eda26faac35eb9de15d92a7b6de7e51ab4435 (patch)
treea56fb508f622ce5dcce679e7d3a6a951b71df7ff /perl-install/install/gtk.pm
parente366cd580005d0a964c7d10f71bb45ee73be7f94 (diff)
downloaddrakx-backup-do-not-use-927eda26faac35eb9de15d92a7b6de7e51ab4435.tar
drakx-backup-do-not-use-927eda26faac35eb9de15d92a7b6de7e51ab4435.tar.gz
drakx-backup-do-not-use-927eda26faac35eb9de15d92a7b6de7e51ab4435.tar.bz2
drakx-backup-do-not-use-927eda26faac35eb9de15d92a7b6de7e51ab4435.tar.xz
drakx-backup-do-not-use-927eda26faac35eb9de15d92a7b6de7e51ab4435.zip
align installation steps to the right, not the left
Diffstat (limited to 'perl-install/install/gtk.pm')
-rw-r--r--perl-install/install/gtk.pm6
1 files changed, 5 insertions, 1 deletions
diff --git a/perl-install/install/gtk.pm b/perl-install/install/gtk.pm
index c415dc8dc..65b05744e 100644
--- a/perl-install/install/gtk.pm
+++ b/perl-install/install/gtk.pm
@@ -127,7 +127,11 @@ sub create_steps_window {
my $img = gtknew('Image', file => 'steps_off.png');
$steps{steps}{$_}{img} = $img;
$steps{steps}{$_}{raw_text} = translate($o->{steps}{$_}{text});
- push @l, gtknew('HBox', spacing => 7, children_tight => [ '', '', $img, $steps{steps}{$_}{text} = gtknew('Label', text => $steps{steps}{$_}{raw_text}) ]);
+ push @l, gtknew('HBox', spacing => 7, children => [
+ 1, '',
+ 0, $steps{steps}{$_}{text} = gtknew('Label', text => $steps{steps}{$_}{raw_text}),
+ 0, $img,
+ ]);
}
my $offset = 20;