diff options
author | Thierry Vignaud <tv@mandriva.org> | 2008-09-01 16:18:02 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2008-09-01 16:18:02 +0000 |
commit | a92da50e0a99e1fd2f89f1b8ab0b56c23683a952 (patch) | |
tree | f964869c2fbd0aaa3181ae49fade8dac89bebfe3 | |
parent | 73e9459062f85bca8adef6976df8d4a6f2dbbbe0 (diff) | |
download | drakx-a92da50e0a99e1fd2f89f1b8ab0b56c23683a952.tar drakx-a92da50e0a99e1fd2f89f1b8ab0b56c23683a952.tar.gz drakx-a92da50e0a99e1fd2f89f1b8ab0b56c23683a952.tar.bz2 drakx-a92da50e0a99e1fd2f89f1b8ab0b56c23683a952.tar.xz drakx-a92da50e0a99e1fd2f89f1b8ab0b56c23683a952.zip |
(reallyChooseDesktop) make sure title use all availlable width
-rw-r--r-- | perl-install/install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/install/steps_gtk.pm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index d518dfa85..5dfe58b61 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -6,7 +6,7 @@ and install updates. This replaces the previous "Install Updates" step. - fix alignment of check buttons - fix sizing radio buttons' labels (infamous 6 years old gnome bug #101968) -- further improvements to the "bootloader", "partitionning" steps +- further improvements to the "bootloader", "desktop" & "partitionning" steps - prevent big combo boxes to cause an horizontall scrollbar to appear by using the "ellipsize" property - remove "Generate auto install floppy" & "Save packages selection" diff --git a/perl-install/install/steps_gtk.pm b/perl-install/install/steps_gtk.pm index 372a7ed30..790849e6d 100644 --- a/perl-install/install/steps_gtk.pm +++ b/perl-install/install/steps_gtk.pm @@ -280,7 +280,7 @@ sub reallyChooseDesktop { ugtk2::gtkadd($w->{window}, gtknew('VBox', children => [ - 0, gtknew('Title2', label => $message . + 0, gtknew('Title2', width => mygtk2::get_label_width(), label => $message . N("Click on images in order to see a bigger preview")), 1, gtknew('HButtonBox', children_loose => \@l), 0, $w->create_okcancel(N("Next"), undef), |