From 66fc2b96d02fe83d63d7ecdaefbd7767b44e6bdf Mon Sep 17 00:00:00 2001 From: emizzle Date: Tue, 26 May 2020 11:28:07 +1000 Subject: [PATCH] fix: Inability to select generated account Selecting a generated account other than the first one in the list would always use the first generated account. Uncomment commented-out code that updates the selected index in the view. --- ui/onboarding/GenKey.qml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/ui/onboarding/GenKey.qml b/ui/onboarding/GenKey.qml index 96db4be085..bbd146dabd 100644 --- a/ui/onboarding/GenKey.qml +++ b/ui/onboarding/GenKey.qml @@ -52,12 +52,11 @@ SwipeView { Row { RadioButton { - // checked: index == 0 ? true : false - checked: false + checked: index == 0 ? true : false ButtonGroup.group: accountGroup - // onClicked: { - // wizardStep2.selectedIndex = index; - // } + onClicked: { + wizardStep2.selectedIndex = index; + } } Column { Image {