summaryrefslogtreecommitdiffstats
path: root/perl-install/install/steps_gtk.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2008-09-02 14:48:58 +0000
committerThierry Vignaud <tv@mandriva.org>2008-09-02 14:48:58 +0000
commiteb24c61f006d9a2739205a9cfc21ee6a1e4f5228 (patch)
tree358774b95a99ea548b6a333ec96c2900e51b17b3 /perl-install/install/steps_gtk.pm
parent86a310fb0f453b9fc05af103a6aa3d44627a3846 (diff)
downloaddrakx-eb24c61f006d9a2739205a9cfc21ee6a1e4f5228.tar
drakx-eb24c61f006d9a2739205a9cfc21ee6a1e4f5228.tar.gz
drakx-eb24c61f006d9a2739205a9cfc21ee6a1e4f5228.tar.bz2
drakx-eb24c61f006d9a2739205a9cfc21ee6a1e4f5228.tar.xz
drakx-eb24c61f006d9a2739205a9cfc21ee6a1e4f5228.zip
(ask_deselect_media__copy_on_disk) further improve layout of media selection step by fixing width of another label
Diffstat (limited to 'perl-install/install/steps_gtk.pm')
-rw-r--r--perl-install/install/steps_gtk.pm5
1 files changed, 4 insertions, 1 deletions
diff --git a/perl-install/install/steps_gtk.pm b/perl-install/install/steps_gtk.pm
index 17552cad6..b63acf7b0 100644
--- a/perl-install/install/steps_gtk.pm
+++ b/perl-install/install/steps_gtk.pm
@@ -698,7 +698,10 @@ sub ask_deselect_media__copy_on_disk {
create_scrolled_window(gtkpack_(
Gtk2::VBox->new(0, 5),
@names > 1 ? (
- 0, Gtk2::WrappedLabel->new(formatAlaTeX(N("The following installation media have been found.
+ 0, gtknew('Label_Left', padding => [ 0, 0 ],
+ # workaround infamous 6 years old gnome bug #101968:
+ width => mygtk2::get_label_width(),
+ text => formatAlaTeX(N("The following installation media have been found.
If you want to skip some of them, you can unselect them now."))),
(map {
my $b = gtknew('CheckButton', text => $_, active_ref => \$selection{$_});