summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/draksplash
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2008-09-28 21:21:51 +0000
committerThierry Vignaud <tv@mandriva.org>2008-09-28 21:21:51 +0000
commit1e320ddc24bf27470a27ee2f3bb5eaa28056d8d5 (patch)
tree89f713ee768eaa822edf35fd33e89ecbe4725a75 /perl-install/standalone/draksplash
parent05361f3089e05b7f62166f93d2c2b85e97be0bed (diff)
downloaddrakx-1e320ddc24bf27470a27ee2f3bb5eaa28056d8d5.tar
drakx-1e320ddc24bf27470a27ee2f3bb5eaa28056d8d5.tar.gz
drakx-1e320ddc24bf27470a27ee2f3bb5eaa28056d8d5.tar.bz2
drakx-1e320ddc24bf27470a27ee2f3bb5eaa28056d8d5.tar.xz
drakx-1e320ddc24bf27470a27ee2f3bb5eaa28056d8d5.zip
do the wrapping automatically, not through manually inserted "\n"
Diffstat (limited to 'perl-install/standalone/draksplash')
-rwxr-xr-xperl-install/standalone/draksplash2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/draksplash b/perl-install/standalone/draksplash
index 576e2b447..9e5981afe 100755
--- a/perl-install/standalone/draksplash
+++ b/perl-install/standalone/draksplash
@@ -247,7 +247,7 @@ sub create_scale_table {
gtknew('Table', col_spacings => 10, row_spacings => 5, children => [ map {
my $w = gtknew('HScale', adjustment => $adj{$_});
$w->set_digits(0);
- [ gtknew('Label', text => $scale_settings{$_}[1]), $w ];
+ [ gtknew('WrappedLabel', text => formatAlaTeX($scale_settings{$_}[1])), $w ];
} @settings]);
}