diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2014-01-20 07:21:54 +0100 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2014-01-20 07:21:54 +0100 |
commit | 7d57777b5036e0a57553cf51ad11c5b5a7dedee7 (patch) | |
tree | 7e4ef98f5e73a82551563aedc86fca0dbd40a65e /perl-install/diskdrake | |
parent | 81f5869e1e9afaf2349ffd0c34f1c149589b3897 (diff) | |
download | drakx-7d57777b5036e0a57553cf51ad11c5b5a7dedee7.tar drakx-7d57777b5036e0a57553cf51ad11c5b5a7dedee7.tar.gz drakx-7d57777b5036e0a57553cf51ad11c5b5a7dedee7.tar.bz2 drakx-7d57777b5036e0a57553cf51ad11c5b5a7dedee7.tar.xz drakx-7d57777b5036e0a57553cf51ad11c5b5a7dedee7.zip |
increase back minimum partition width for Oxygen (mga#11977)
reverting commit 6861dc0526938a22da627308591d652b05b8fbf6
this should results in better sizing if there's a lot a small partitions
as oxygen's ToggleButtons minimum width is bigger
Diffstat (limited to 'perl-install/diskdrake')
-rw-r--r-- | perl-install/diskdrake/hd_gtk.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/diskdrake/hd_gtk.pm b/perl-install/diskdrake/hd_gtk.pm index 98738738f..653320697 100644 --- a/perl-install/diskdrake/hd_gtk.pm +++ b/perl-install/diskdrake/hd_gtk.pm @@ -16,7 +16,7 @@ use log; use fsedit; use feature qw(state); -my ($width, $height, $minwidth) = (400, 50, 5); +my ($width, $height, $minwidth) = (400, 50, 16); my ($all_hds, $in, $do_force_reload, $current_kind, $current_entry, $update_all); my ($w, @notebook, $done_button); |