mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-16 15:58:11 +00:00
wizardhome: add change network label
This commit is contained in:
parent
a5a90c7ed8
commit
725cf737bc
1 changed files with 25 additions and 14 deletions
|
@ -180,12 +180,22 @@ Rectangle {
|
||||||
visible: showAdvancedCheckbox.checked && appWindow.walletMode >= 2
|
visible: showAdvancedCheckbox.checked && appWindow.walletMode >= 2
|
||||||
columns: 4
|
columns: 4
|
||||||
columnSpacing: 20
|
columnSpacing: 20
|
||||||
|
Layout.fillWidth: true
|
||||||
|
|
||||||
|
ColumnLayout {
|
||||||
|
Layout.topMargin: 4
|
||||||
|
|
||||||
|
MoneroComponents.Label {
|
||||||
|
text: qsTr("Change Network:") + translationManager.emptyString
|
||||||
|
fontSize: 14
|
||||||
|
}
|
||||||
|
|
||||||
MoneroComponents.StandardDropdown {
|
MoneroComponents.StandardDropdown {
|
||||||
id: networkTypeDropdown
|
id: networkTypeDropdown
|
||||||
dataModel: networkTypeModel
|
dataModel: networkTypeModel
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
Layout.topMargin: 41
|
Layout.maximumWidth: 180
|
||||||
|
Layout.topMargin: 5
|
||||||
|
|
||||||
onChanged: {
|
onChanged: {
|
||||||
var item = dataModel.get(currentIndex).nettype.toLowerCase();
|
var item = dataModel.get(currentIndex).nettype.toLowerCase();
|
||||||
|
@ -199,6 +209,7 @@ Rectangle {
|
||||||
appWindow.disconnectRemoteNode()
|
appWindow.disconnectRemoteNode()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
MoneroComponents.LineEdit {
|
MoneroComponents.LineEdit {
|
||||||
id: kdfRoundsText
|
id: kdfRoundsText
|
||||||
|
|
Loading…
Reference in a new issue