You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
869 B
35 lines
869 B
import QtQuick 2.6 |
|
import QtQuick.Layouts 1.0 |
|
import QtQuick.Controls 2.1 |
|
|
|
import "../../../gui/qml/components/wizard" |
|
|
|
WizardComponent { |
|
valid: keepordisablegroup.checkedButton |
|
|
|
function apply() { |
|
wizard_data['trustedcoin_keepordisable'] = keepordisablegroup.checkedButton.keepordisable |
|
} |
|
|
|
ButtonGroup { |
|
id: keepordisablegroup |
|
onCheckedButtonChanged: checkIsLast() |
|
} |
|
|
|
ColumnLayout { |
|
Label { |
|
text: qsTr('Restore 2FA wallet') |
|
} |
|
RadioButton { |
|
ButtonGroup.group: keepordisablegroup |
|
property string keepordisable: 'keep' |
|
checked: true |
|
text: qsTr('Keep') |
|
} |
|
RadioButton { |
|
ButtonGroup.group: keepordisablegroup |
|
property string keepordisable: 'disable' |
|
text: qsTr('Disable') |
|
} |
|
} |
|
}
|
|
|