diff options
-rw-r--r-- | perl-install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/fs/partitioning_wizard.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 42f48471f..f9d106ac3 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,5 +1,6 @@ - diskdrake: o detect eMMc block devices (Luc Menut, mga#11812) + o fix a crash in partitioning wizard (mga#11820) o show labels on partition buttons again but ellipsized (mga#11858) Version 16.4 - 2 December 2013 diff --git a/perl-install/fs/partitioning_wizard.pm b/perl-install/fs/partitioning_wizard.pm index c9486c5d1..4749deec1 100644 --- a/perl-install/fs/partitioning_wizard.pm +++ b/perl-install/fs/partitioning_wizard.pm @@ -369,7 +369,7 @@ sub create_display_box { }; $hpane->signal_connect('size-allocate' => sub { my (undef, $alloc) = @_; - $entry->{width} = $alloc->width; + $entry->{width} = $alloc->{width}; $update_ratio->(); 0; }); diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 33acd6960..7bbb7fac0 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,5 +1,6 @@ - partitioning: o detect eMMc block devices (Luc Menut, mga#11812) + o fix a crash in partitioning wizard (mga#11820) o show labels on partition buttons again but ellipsized (mga#11858) Version 16.4 - 2 December 2013 |