diff options
author | Pascal Terjan <pterjan@mandriva.org> | 2009-10-15 19:31:06 +0000 |
---|---|---|
committer | Pascal Terjan <pterjan@mandriva.org> | 2009-10-15 19:31:06 +0000 |
commit | 202e0c2d5af7d9e904d7b5a2f423ca1574b3b938 (patch) | |
tree | 5b04f08d3669e234f239504bc5d37b8088cc3a22 /perl-install | |
parent | 33b710f83c1fe9e2e641383a22e48e1407dd47bb (diff) | |
download | drakx-202e0c2d5af7d9e904d7b5a2f423ca1574b3b938.tar drakx-202e0c2d5af7d9e904d7b5a2f423ca1574b3b938.tar.gz drakx-202e0c2d5af7d9e904d7b5a2f423ca1574b3b938.tar.bz2 drakx-202e0c2d5af7d9e904d7b5a2f423ca1574b3b938.tar.xz drakx-202e0c2d5af7d9e904d7b5a2f423ca1574b3b938.zip |
resize disk graphical description when resizing diskdrake
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/diskdrake/hd_gtk.pm | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 94c770847..3b2b2a2aa 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -6,6 +6,7 @@ o fix labels for windows resizing when getting back to the screen o offer to resize last big enough windows partition instead of the first one, until user can chose +- resize disk graphical description when resizing diskdrake Version 12.65 - 14 October 2009 diff --git a/perl-install/diskdrake/hd_gtk.pm b/perl-install/diskdrake/hd_gtk.pm index 5306fc6fa..6848e2b5b 100644 --- a/perl-install/diskdrake/hd_gtk.pm +++ b/perl-install/diskdrake/hd_gtk.pm @@ -348,7 +348,7 @@ sub create_buttons4partitions { $entry->{fs_type} && member($entry->{fs_type}, @colorized_fs_types) ? $entry->{fs_type} : 'other')); $w->set_size_request($entry->{size} * $ratio + $minwidth, 0); - gtkpack__($kind->{display_box}, $w); + gtkpack($kind->{display_box}, $w); if ($current_entry && fsedit::are_same_partitions($current_entry, $entry)) { $set_current_button->($w); $w->grab_focus; |