diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2018-03-06 12:26:03 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2018-03-06 12:26:03 -0500 |
| commit | 4479026649320e733428e25683af9c07262c30ae (patch) | |
| tree | a1a3f7e9766b73e1c4b93772bd51c3ff318b802a /wizard | |
| parent | 2deff0611d7b19c9e25c5c8e7c6c66741e4be758 (diff) | |
| parent | 22de9db4e130258987171ecf5f7f3f436aaee2ba (diff) | |
| download | monzero-gui-4479026649320e733428e25683af9c07262c30ae.tar.gz monzero-gui-4479026649320e733428e25683af9c07262c30ae.tar.xz monzero-gui-4479026649320e733428e25683af9c07262c30ae.zip | |
Merge pull request #1149
22de9db Fix a few uses of undefined data on startup and exit
Diffstat (limited to 'wizard')
| -rw-r--r-- | wizard/WizardDaemonSettings.qml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/wizard/WizardDaemonSettings.qml b/wizard/WizardDaemonSettings.qml index 953bb21d..8b616edf 100644 --- a/wizard/WizardDaemonSettings.qml +++ b/wizard/WizardDaemonSettings.qml @@ -206,8 +206,9 @@ ColumnLayout { Layout.minimumWidth: 300 * scaleRatio opacity: remoteNode.checked id: remoteNodeEdit - daemonAddrText: persistentSettings.remoteNodeAddress.split(":")[0].trim() - daemonPortText: (persistentSettings.remoteNodeAddress.split(":")[1].trim() == "") ? "18081" : persistentSettings.remoteNodeAddress.split(":")[1] + property var rna: persistentSettings.remoteNodeAddress + daemonAddrText: rna.search(":") != -1 ? rna.split(":")[0].trim() : "" + daemonPortText: rna.search(":") != -1 ? (rna.split(":")[1].trim() == "") ? "18081" : persistentSettings.remoteNodeAddress.split(":")[1] : "" } } } |
