summaryrefslogtreecommitdiff
path: root/components/SuccessfulTxDialog.qml
diff options
context:
space:
mode:
Diffstat (limited to 'components/SuccessfulTxDialog.qml')
-rw-r--r--components/SuccessfulTxDialog.qml20
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