diff options
author | Thierry Vignaud <tv@mandriva.org> | 2008-09-28 20:52:55 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2008-09-28 20:52:55 +0000 |
commit | 780c58b38e078a7fabb26f9fc88c3f125aa6645f (patch) | |
tree | 383d09a3ac02e5e99a21d51083405bd507068c54 /perl-install | |
parent | a685100c3eae5c3837e6171cace319f8cd6de9f7 (diff) | |
download | drakx-780c58b38e078a7fabb26f9fc88c3f125aa6645f.tar drakx-780c58b38e078a7fabb26f9fc88c3f125aa6645f.tar.gz drakx-780c58b38e078a7fabb26f9fc88c3f125aa6645f.tar.bz2 drakx-780c58b38e078a7fabb26f9fc88c3f125aa6645f.tar.xz drakx-780c58b38e078a7fabb26f9fc88c3f125aa6645f.zip |
increase default width so that translated widgets fit in
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/NEWS | 1 | ||||
-rwxr-xr-x | perl-install/standalone/draksplash | 2 |
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; |