diff options
Diffstat (limited to 'perl-install')
-rwxr-xr-x | perl-install/standalone/draksplash | 2 |
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]); } |