aboutsummaryrefslogtreecommitdiff
path: root/components/ProcessingSplash.qml
diff options
context:
space:
mode:
Diffstat (limited to 'components/ProcessingSplash.qml')
-rw-r--r--components/ProcessingSplash.qml14
1 files changed, 7 insertions, 7 deletions
diff --git a/components/ProcessingSplash.qml b/components/ProcessingSplash.qml
index 469cc1fa..1c41f589 100644
--- a/components/ProcessingSplash.qml
+++ b/components/ProcessingSplash.qml
@@ -1,4 +1,4 @@
-// Copyright (c) 2014-2024, The Monero Project
+// Copyright (c) 2014-2024, The Monzero Project
//
// All rights reserved.
//
@@ -32,14 +32,14 @@ import QtQuick.Controls 1.4
import QtQuick.Controls.Styles 1.4
import QtQuick.Layouts 1.1
-import "../components" as MoneroComponents
+import "../components" as MonzeroComponents
Rectangle {
id: root
- 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
z: 11
property alias messageText: messageTitle.text
@@ -74,7 +74,7 @@ Rectangle {
width: 60
height: 60
anchors.centerIn: parent
- source: "qrc:///images/monero-vector.svg"
+ source: "qrc:///images/monzero-xmz-coin.png"
mipmap: true
}
@@ -98,7 +98,7 @@ Rectangle {
}
- MoneroComponents.TextPlain {
+ MonzeroComponents.TextPlain {
id: messageTitle
text: qsTr("Please wait...") + translationManager.emptyString
font.pixelSize: 24
@@ -106,7 +106,7 @@ Rectangle {
Layout.alignment: Qt.AlignVCenter | Qt.AlignHCenter
Layout.fillWidth: true
themeTransition: false
- color: MoneroComponents.Style.defaultFontColor
+ color: MonzeroComponents.Style.defaultFontColor
}
}
}