summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2008-09-28 21:36:47 +0000
committerThierry Vignaud <tv@mandriva.org>2008-09-28 21:36:47 +0000
commitbebae48c37edaddaa485f165976ca18e91a3b9a2 (patch)
tree0fa173707dce75e266a439d44b30a4c193ffa4ce /perl-install
parent80182866bfb89c41fe8c431e2293e22fdd451a73 (diff)
downloaddrakx-bebae48c37edaddaa485f165976ca18e91a3b9a2.tar
drakx-bebae48c37edaddaa485f165976ca18e91a3b9a2.tar.gz
drakx-bebae48c37edaddaa485f165976ca18e91a3b9a2.tar.bz2
drakx-bebae48c37edaddaa485f165976ca18e91a3b9a2.tar.xz
drakx-bebae48c37edaddaa485f165976ca18e91a3b9a2.zip
prevent wrapping labels for most languages
Diffstat (limited to 'perl-install')
-rwxr-xr-xperl-install/standalone/draksplash4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/standalone/draksplash b/perl-install/standalone/draksplash
index 5c06f5843..d41ebed59 100755
--- a/perl-install/standalone/draksplash
+++ b/perl-install/standalone/draksplash
@@ -10,7 +10,7 @@ use interactive;
use bootsplash;
my $in = 'interactive'->vnew('su');
-my $global_width = 500;
+my $global_width = 700;
$in->do_pkgs->ensure_is_installed('ImageMagick', '/usr/bin/convert') or close_all();
$in->do_pkgs->ensure_is_installed('netpbm', '/usr/bin/jpegtopnm') or close_all();
@@ -255,7 +255,7 @@ sub create_scale_table {
gtknew('Table', col_spacings => 10, row_spacings => 5, children => [ map {
my $w = gtknew('HScale', adjustment => $adj{$_}, width => 100);
$w->set_digits(0);
- [ gtknew('WrappedLabel', width => ($global_width-200), text => formatAlaTeX($scale_settings{$_}[1])), $w ];
+ [ gtknew('WrappedLabel', width => ($global_width-150), text => formatAlaTeX($scale_settings{$_}[1])), $w ];
} @settings]);
}