From 96b708cf3834b5b9def187ce80e9592cdfb2284a Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Tue, 3 Dec 2013 17:07:00 +0100 Subject: fix a crash in partitioning wizard (mga#11820) --- perl-install/NEWS | 1 + perl-install/fs/partitioning_wizard.pm | 2 +- perl-install/install/NEWS | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) 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 -- cgit v1.2.1