summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/NEWS1
-rwxr-xr-xperl-install/standalone/draksplash2
2 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index 4e143e22c..67800514a 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -2,6 +2,7 @@
o fix crashing when altering read-only combo boxes
(regression introduced in 11.37 on 2008-09-08)
o improved layout
+ o increase default width so that translated widgets fit in
o make it fit a little better in 800x600 resolution (#36105)
Version 11.56 - 26 September 2008
diff --git a/perl-install/standalone/draksplash b/perl-install/standalone/draksplash
index f667cae54..31a2b99c8 100755
--- a/perl-install/standalone/draksplash
+++ b/perl-install/standalone/draksplash
@@ -116,7 +116,7 @@ gtkadd($window->{window},
gtknew('Button', text => N("Quit"), clicked => \&close_all)])])),
gtkshow(gtkadd($preview_window->{window}, $scroll));
-$window->{rwindow}->set_size_request(400, -1);
+$window->{rwindow}->set_size_request(500, -1);
$window->{rwindow}->set_border_width(5);
$window->{rwindow}->set_position('center');
$window->{rwindow}->show_all;