diff options
| author | Monzero Build System <builds@monzero.org> | 2026-08-15 21:26:40 +0100 |
|---|---|---|
| committer | Monzero Build System <builds@monzero.org> | 2026-08-15 21:26:40 +0100 |
| commit | dceeb88444ce966caa1a133d2926d5f7213c87ff (patch) | |
| tree | d74c9c7d7e43c2a0d39d656c690c63050cff7f53 /components/RemoteNodeDialog.qml | |
| parent | 81f33c7e00bf183823909a02e6d96ce11e41adce (diff) | |
| download | monzero-gui-dceeb88444ce966caa1a133d2926d5f7213c87ff.tar.gz monzero-gui-dceeb88444ce966caa1a133d2926d5f7213c87ff.tar.xz monzero-gui-dceeb88444ce966caa1a133d2926d5f7213c87ff.zip | |
Establish Monzero GUI Phase 0 baselinemonzero-gui-phase0-20260815
Diffstat (limited to 'components/RemoteNodeDialog.qml')
| -rw-r--r-- | components/RemoteNodeDialog.qml | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/components/RemoteNodeDialog.qml b/components/RemoteNodeDialog.qml index 015f122d..36376386 100644 --- a/components/RemoteNodeDialog.qml +++ b/components/RemoteNodeDialog.qml @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2024, The Monero Project +// Copyright (c) 2021-2024, The Monzero Project // // All rights reserved. // @@ -30,9 +30,9 @@ import QtQuick 2.9 import QtQuick.Controls 2.2 import QtQuick.Layouts 1.1 -import "." as MoneroComponents +import "." as MonzeroComponents -MoneroComponents.Dialog { +MonzeroComponents.Dialog { id: root title: (editMode ? qsTr("Edit remote node") : qsTr("Add remote node")) + translationManager.emptyString @@ -89,7 +89,7 @@ MoneroComponents.Dialog { root.success = false; } - MoneroComponents.RemoteNodeEdit { + MonzeroComponents.RemoteNodeEdit { id: remoteNodeAddress Layout.fillWidth: true placeholderFontSize: 15 @@ -107,7 +107,7 @@ MoneroComponents.Dialog { Layout.fillWidth: true spacing: 32 - MoneroComponents.LineEdit { + MonzeroComponents.LineEdit { id: daemonUsername Layout.fillWidth: true Layout.minimumWidth: 220 @@ -118,7 +118,7 @@ MoneroComponents.Dialog { fontSize: 15 } - MoneroComponents.LineEdit { + MonzeroComponents.LineEdit { id: daemonPassword Layout.fillWidth: true Layout.minimumWidth: 220 @@ -136,7 +136,7 @@ MoneroComponents.Dialog { } } - MoneroComponents.CheckBox { + MonzeroComponents.CheckBox { id: setTrustedDaemonCheckBox activeFocusOnTab: true text: qsTr("Mark as Trusted Daemon") + translationManager.emptyString @@ -146,7 +146,7 @@ MoneroComponents.Dialog { Layout.alignment: Qt.AlignRight spacing: parent.spacing - MoneroComponents.StandardButton { + MonzeroComponents.StandardButton { activeFocusOnTab: true fontBold: false primary: false @@ -155,7 +155,7 @@ MoneroComponents.Dialog { onClicked: root.close() } - MoneroComponents.StandardButton { + MonzeroComponents.StandardButton { activeFocusOnTab: true fontBold: false enabled: remoteNodeAddress.getAddress() != "" |
