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.
This commit is contained in:
emizzle 2020-05-26 11:28:07 +10:00 committed by Iuri Matias
parent f89628871f
commit 66fc2b96d0
1 changed files with 4 additions and 5 deletions

View File

@ -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 {