1
mirror of https://github.com/monero-project/monero-gui synced 2024-12-26 01:23:44 +01:00

Enter default value in port in settings page

Enter default value in port in settings page
This commit is contained in:
Gingeropolous 2016-11-24 20:41:44 -05:00 committed by GitHub
parent 26abdee5c4
commit 4bef677f24

View File

@ -196,7 +196,7 @@ Rectangle {
id: daemonPort
Layout.preferredWidth: 100
Layout.fillWidth: true
text: (daemonAddress !== undefined) ? daemonAddress[1] : ""
text: (daemonAddress !== undefined) ? daemonAddress[1] : "18081"
placeholderText: qsTr("Port")
}