diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2013-12-02 17:06:35 +0100 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2013-12-02 17:08:36 +0100 |
commit | 80ca8cd488b50c30842f29481ed8aac5d259ef83 (patch) | |
tree | 7ee77ee002d59ec4c8f5bc9380ddaf0d11517f44 /perl-install/fs/partitioning_wizard.pm | |
parent | 2c83a3b4351a6cbe3b91dd962883ce8d6e74f120 (diff) | |
download | drakx-80ca8cd488b50c30842f29481ed8aac5d259ef83.tar drakx-80ca8cd488b50c30842f29481ed8aac5d259ef83.tar.gz drakx-80ca8cd488b50c30842f29481ed8aac5d259ef83.tar.bz2 drakx-80ca8cd488b50c30842f29481ed8aac5d259ef83.tar.xz drakx-80ca8cd488b50c30842f29481ed8aac5d259ef83.zip |
fix partionning wizard moving the main window to left (mga#11790)
widgets were too wide with gtk3 + oxygen-gtk3
we either have to change the horizontal scrolling policty to 'automatic'
(thus having an ugly horizontal scrolling bar) or shrink those widgets
Diffstat (limited to 'perl-install/fs/partitioning_wizard.pm')
-rw-r--r-- | perl-install/fs/partitioning_wizard.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/fs/partitioning_wizard.pm b/perl-install/fs/partitioning_wizard.pm index b8d68a382..c9486c5d1 100644 --- a/perl-install/fs/partitioning_wizard.pm +++ b/perl-install/fs/partitioning_wizard.pm @@ -295,7 +295,7 @@ sub create_display_box { my @parts = diskdrake::hd_gtk::kind2parts($kind); my $totalsectors = diskdrake::hd_gtk::kind2sectors($kind, @parts); - my $width = 540; + my $width = 520; my $minwidth = 40; my $display_box = ugtk3::gtkset_size_request(Gtk3::HBox->new(0,0), -1, 26); @@ -460,7 +460,7 @@ sub display_choices { $item = Gtk3::EventBox->new; my $b2 = gtknew("Image", file => "small-logo"); $item->add($b2); - $item->set_size_request(540,26); + $item->set_size_request(520,26); $item->set_name("PART_new"); } elsif ($s eq 'diskdrake') { } else { |