From e26558f3a0b0c758e62e669f8dad10b30f1c1ecc Mon Sep 17 00:00:00 2001 From: =?utf-8?q?Marc=20V=C3=A9ron?= Date: Sat, 11 Mar 2017 19:17:37 +0100 Subject: [PATCH] Bug 18246: Patron card creator: Unit not always displays properly in layouts Content-Type: text/plain; charset=utf-8 To reproduce: 1) Create a new layout 2) Select an unit in "Units selection" 3) Save 4) Edit layout again 5) Select other unit, e.g. 'SI Centimeter' 6) Save 7) Repeat 8) Edit again Error: Latest unit seems to stick and can no longer be changed, because in units drop down, multiple untis are marked as selected. To test: 1) Apply patch 2) Repeat steps above, verify that value for units always display as expected. Signed-off-by: Jesse Maseto Signed-off-by: Marcel de Rooy --- patroncards/edit-layout.pl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/patroncards/edit-layout.pl b/patroncards/edit-layout.pl index 5d5d2df..6ac1fd2 100755 --- a/patroncards/edit-layout.pl +++ b/patroncards/edit-layout.pl @@ -146,6 +146,8 @@ if ($op eq 'edit') { foreach my $unit (@$units){ if ($unit->{'type'} eq $layout->get_attr('units')) { $unit->{'selected'} = 1; + } else { + $unit->{'selected'} = 0; } } -- 2.1.4