wizardhome: add change network label

This commit is contained in:
mmbyday 2019-06-05 10:25:06 -07:00
parent a5a90c7ed8
commit 725cf737bc

View file

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