diff options
-rw-r--r-- | perl-install/install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/install/steps_gtk.pm | 5 |
2 files changed, 5 insertions, 2 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 6519c5ff4..a48dcd5d9 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,4 +1,4 @@ -- enhanced 'package selection' step +- enhanced 'desktop' & 'package selection' steps - fix berber language image's transparency - fix displaying current security level in GUI (regression introduced on 2008-08-29) diff --git a/perl-install/install/steps_gtk.pm b/perl-install/install/steps_gtk.pm index 4e9826ed8..cf5653ea7 100644 --- a/perl-install/install/steps_gtk.pm +++ b/perl-install/install/steps_gtk.pm @@ -264,7 +264,10 @@ sub reallyChooseDesktop { my $wp = ugtk2->new($title{$val->[1]}, transient => $w->{real_window}, modal => 1,); gtkadd($wp->{rwindow}, gtkpack_(Gtk2::VBox->new, - 0, N("Here's a preview of the '%s' desktop.", $val->[1]), + 0, gtknew('Title2', label => N("Here's a preview of the '%s' desktop.", $val->[1]), + # workaround infamous 6 years old gnome bug #101968: + width => mygtk2::get_label_width(), + ), 1, gtknew('Image', file => "desktop-$val->[0]-big"), 0, Gtk2::HSeparator->new, 0, gtkpack(create_hbox('end'), |