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/SuccessfulTxDialog.qml | |
| parent | 81f33c7e00bf183823909a02e6d96ce11e41adce (diff) | |
| download | monzero-gui-phase0-20260815.tar.gz monzero-gui-phase0-20260815.tar.xz monzero-gui-phase0-20260815.zip | |
Establish Monzero GUI Phase 0 baselinemonzero-gui-phase0-20260815
Diffstat (limited to 'components/SuccessfulTxDialog.qml')
| -rw-r--r-- | components/SuccessfulTxDialog.qml | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/components/SuccessfulTxDialog.qml b/components/SuccessfulTxDialog.qml index bd59b7ef..61191499 100644 --- a/components/SuccessfulTxDialog.qml +++ b/components/SuccessfulTxDialog.qml @@ -1,4 +1,4 @@ -// Copyright (c) 2014-2024, The Monero Project +// Copyright (c) 2014-2024, The Monzero Project // // All rights reserved. // @@ -31,7 +31,7 @@ import QtQuick.Controls 2.0 import QtQuick.Layouts 1.1 import moneroComponents.Clipboard 1.0 -import "../components" as MoneroComponents +import "../components" as MonzeroComponents Rectangle { id: root @@ -40,10 +40,10 @@ Rectangle { // TODO: implement without hardcoding sizes width: 580 height: 400 - color: MoneroComponents.Style.blackTheme ? "black" : "white" + color: MonzeroComponents.Style.blackTheme ? "black" : "white" visible: false radius: 10 - border.color: MoneroComponents.Style.blackTheme ? Qt.rgba(255, 255, 255, 0.25) : Qt.rgba(0, 0, 0, 0.25) + border.color: MonzeroComponents.Style.blackTheme ? Qt.rgba(255, 255, 255, 0.25) : Qt.rgba(0, 0, 0, 0.25) border.width: 1 Keys.enabled: true Keys.onEscapePressed: { @@ -80,7 +80,7 @@ Rectangle { Layout.fillWidth: true Layout.alignment: Qt.AlignCenter - MoneroComponents.Label { + MonzeroComponents.Label { fontSize: 18 fontFamily: "Arial" horizontalAlignment: Text.AlignHCenter @@ -108,7 +108,7 @@ Rectangle { } } - MoneroComponents.LineEditMulti { + MonzeroComponents.LineEditMulti { visible: !appWindow.viewOnly Layout.leftMargin: 25 Layout.rightMargin: 25 @@ -121,7 +121,7 @@ Rectangle { fontSize: 16 } - MoneroComponents.LineEditMulti { + MonzeroComponents.LineEditMulti { visible: appWindow.viewOnly Layout.leftMargin: 25 borderDisabled: true @@ -140,7 +140,7 @@ Rectangle { Layout.fillWidth: true Layout.preferredHeight: 50 - MoneroComponents.StandardButton { + MonzeroComponents.StandardButton { id: viewProgressButton visible: !appWindow.viewOnly text: qsTr("View progress") + translationManager.emptyString; @@ -154,7 +154,7 @@ Rectangle { } } - MoneroComponents.StandardButton { + MonzeroComponents.StandardButton { id: openFolderButton visible: appWindow.viewOnly text: qsTr("Open folder") + translationManager.emptyString; @@ -165,7 +165,7 @@ Rectangle { } } - MoneroComponents.StandardButton { + MonzeroComponents.StandardButton { id: doneButton text: qsTr("Done") + translationManager.emptyString; width: 200 |
