diff options
| author | rating89us <45968869+rating89us@users.noreply.github.com> | 2021-06-28 00:33:49 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-28 00:33:49 +0200 |
| commit | 2c0cf0d652ae2d9c78efa6c6473a47921ea8f356 (patch) | |
| tree | 7b2a40d09bf20ac61592db348f83f9e8a7e064a8 /wizard/WizardCreateDevice1.qml | |
| parent | b58bff39a04df3eefa016e283af6be73f58a9e18 (diff) | |
| download | monzero-gui-2c0cf0d652ae2d9c78efa6c6473a47921ea8f356.tar.gz monzero-gui-2c0cf0d652ae2d9c78efa6c6473a47921ea8f356.tar.xz monzero-gui-2c0cf0d652ae2d9c78efa6c6473a47921ea8f356.zip | |
WizardCreateDevice1: move "choose your device" dropdown to the top
Diffstat (limited to 'wizard/WizardCreateDevice1.qml')
| -rw-r--r-- | wizard/WizardCreateDevice1.qml | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/wizard/WizardCreateDevice1.qml b/wizard/WizardCreateDevice1.qml index 1dc877e4..4dea592c 100644 --- a/wizard/WizardCreateDevice1.qml +++ b/wizard/WizardCreateDevice1.qml @@ -83,8 +83,17 @@ Rectangle { Layout.topMargin: 10 Layout.fillWidth: true + MoneroComponents.StandardDropdown { + id: deviceNameDropdown + dataModel: deviceNameModel + Layout.fillWidth: true + Layout.topMargin: 0 + z: 3 + } + MoneroComponents.RadioButton { id: newDeviceWallet + Layout.topMargin: 20 text: qsTr("Create a new wallet from device.") + translationManager.emptyString fontSize: 16 checked: true @@ -127,14 +136,6 @@ Rectangle { text: "0" } - MoneroComponents.StandardDropdown { - id: deviceNameDropdown - dataModel: deviceNameModel - Layout.fillWidth: true - Layout.topMargin: 6 - z: 3 - } - CheckBox2 { id: showAdvancedCheckbox checked: false |
