aboutsummaryrefslogtreecommitdiff
path: root/components/Label.qml
diff options
context:
space:
mode:
authorMonzero Build System <builds@monzero.org>2026-08-15 21:26:40 +0100
committerMonzero Build System <builds@monzero.org>2026-08-15 21:26:40 +0100
commitdceeb88444ce966caa1a133d2926d5f7213c87ff (patch)
treed74c9c7d7e43c2a0d39d656c690c63050cff7f53 /components/Label.qml
parent81f33c7e00bf183823909a02e6d96ce11e41adce (diff)
downloadmonzero-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/Label.qml')
-rw-r--r--components/Label.qml10
1 files changed, 5 insertions, 5 deletions
diff --git a/components/Label.qml b/components/Label.qml
index 22778113..28a8bd8b 100644
--- a/components/Label.qml
+++ b/components/Label.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
Item {
id: item
@@ -42,7 +42,7 @@ Item {
property string tipText: ""
property int fontSize: 16
property bool fontBold: false
- property string fontColor: MoneroComponents.Style.defaultFontColor
+ property string fontColor: MonzeroComponents.Style.defaultFontColor
property string fontFamily: ""
property alias wrapMode: label.wrapMode
property alias horizontalAlignment: label.horizontalAlignment
@@ -55,7 +55,7 @@ Item {
width: label.width
Layout.topMargin: 10
- MoneroComponents.TextPlain {
+ MonzeroComponents.TextPlain {
id: label
anchors.bottom: parent.bottom
anchors.bottomMargin: 2
@@ -64,7 +64,7 @@ Item {
if(fontFamily){
return fontFamily;
} else {
- return MoneroComponents.Style.fontRegular.name;
+ return MonzeroComponents.Style.fontRegular.name;
}
}
font.pixelSize: fontSize