aboutsummaryrefslogtreecommitdiff
path: root/components/LabelButton.qml
diff options
context:
space:
mode:
Diffstat (limited to 'components/LabelButton.qml')
-rw-r--r--components/LabelButton.qml16
1 files changed, 8 insertions, 8 deletions
diff --git a/components/LabelButton.qml b/components/LabelButton.qml
index b7a40651..4f181f37 100644
--- a/components/LabelButton.qml
+++ b/components/LabelButton.qml
@@ -1,4 +1,4 @@
-// Copyright (c) 2014-2024, The Monero Project
+// Copyright (c) 2014-2024, The Monzero Project
//
// All rights reserved.
//
@@ -29,7 +29,7 @@
import QtQuick 2.9
import QtQuick.Layouts 1.1
-import "../components" as MoneroComponents
+import "../components" as MonzeroComponents
Rectangle {
@@ -37,22 +37,22 @@ Rectangle {
property alias text: labelButtonText.text
id: labelButton
- color: MoneroComponents.Style.buttonBackgroundColorDisabled
+ color: MonzeroComponents.Style.buttonBackgroundColorDisabled
radius: 3
height: 20
width: labelButtonText.width + 14
anchors.right: copyButton.left
anchors.rightMargin: 6
- MoneroComponents.TextPlain {
+ MonzeroComponents.TextPlain {
id: labelButtonText
anchors.verticalCenter: parent.verticalCenter
anchors.horizontalCenter: parent.horizontalCenter
- font.family: MoneroComponents.Style.fontRegular.name
+ font.family: MonzeroComponents.Style.fontRegular.name
font.pixelSize: 12
font.bold: true
text: ""
- color: MoneroComponents.Style.inlineButtonTextColor
+ color: MonzeroComponents.Style.inlineButtonTextColor
}
MouseArea {
@@ -61,11 +61,11 @@ Rectangle {
hoverEnabled: true
onClicked: labelButton.clicked()
onEntered: {
- labelButton.color = MoneroComponents.Style.buttonBackgroundColorDisabledHover;
+ labelButton.color = MonzeroComponents.Style.buttonBackgroundColorDisabledHover;
labelButtonText.opacity = 0.8;
}
onExited: {
- labelButton.color = MoneroComponents.Style.buttonBackgroundColorDisabled;
+ labelButton.color = MonzeroComponents.Style.buttonBackgroundColorDisabled;
labelButtonText.opacity = 1.0;
}
}