diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2014-01-20 01:44:04 +0100 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2014-01-20 01:56:27 +0100 |
commit | 9397164cdc835a5dc38809616f492ab763831541 (patch) | |
tree | 311051b7a073b9fd711eb0c5f840ce073656b883 | |
parent | 7ddb042efd511f14bca865e0cca684367d7d6344 (diff) | |
download | drakx-9397164cdc835a5dc38809616f492ab763831541.tar drakx-9397164cdc835a5dc38809616f492ab763831541.tar.gz drakx-9397164cdc835a5dc38809616f492ab763831541.tar.bz2 drakx-9397164cdc835a5dc38809616f492ab763831541.tar.xz drakx-9397164cdc835a5dc38809616f492ab763831541.zip |
revert minimum partition width to its pre-gtk3 value
reverting commit 6861dc0526938a22da627308591d652b05b8fbf6
-rw-r--r-- | perl-install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/diskdrake/hd_gtk.pm | 2 | ||||
-rw-r--r-- | perl-install/install/NEWS | 1 |
3 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 828264796..c4eda7d7b 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,5 +1,6 @@ - diskdrake: o fix sizing partition widgets + o revert minimum partition width to its pre-gtk3 value Version 16.23 - 16 January 2014 diff --git a/perl-install/diskdrake/hd_gtk.pm b/perl-install/diskdrake/hd_gtk.pm index 266e86cd7..0b36d229d 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, 16); +my ($width, $height, $minwidth) = (400, 50, 5); my ($all_hds, $in, $do_force_reload, $current_kind, $current_entry, $update_all); my ($w, @notebook, $done_button); diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 6f7ffda26..b04a7f5ed 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -3,6 +3,7 @@ - partitioning: o fix sizing partition widgets o fix not moving window (mga#11790, mga#11988, mga#11977) + o revert minimum partition width to its pre-gtk3 value Version 16.25 - 19 January 2014 |