aboutsummaryrefslogtreecommitdiff
path: root/components/CheckBox2.qml
diff options
context:
space:
mode:
Diffstat (limited to 'components/CheckBox2.qml')
-rw-r--r--components/CheckBox2.qml16
1 files changed, 8 insertions, 8 deletions
diff --git a/components/CheckBox2.qml b/components/CheckBox2.qml
index 3764b99f..b9ffac96 100644
--- a/components/CheckBox2.qml
+++ b/components/CheckBox2.qml
@@ -1,4 +1,4 @@
-// Copyright (c) 2014-2024, The Monero Project
+// Copyright (c) 2014-2024, The Monzero Project
//
// All rights reserved.
//
@@ -32,8 +32,8 @@ import QtGraphicalEffects 1.0
import FontAwesome 1.0
import "." 1.0
-import "." as MoneroComponents
-import "effects/" as MoneroEffects
+import "." as MonzeroComponents
+import "effects/" as MonzeroEffects
RowLayout {
id: checkBox
@@ -58,7 +58,7 @@ RowLayout {
width: (label.width + indicatorRect.width + checkBox.textMargin)
color: "transparent"
- MoneroComponents.TextPlain {
+ MonzeroComponents.TextPlain {
id: label
font.family: Style.fontLight.name
font.pixelSize: checkBox.fontSize
@@ -77,18 +77,18 @@ RowLayout {
color: "transparent"
rotation: checkBox.checked ? 180 : 0
- MoneroEffects.ImageMask {
+ MonzeroEffects.ImageMask {
id: indicatorImage
anchors.centerIn: parent
width: 12
height: 8
image: "qrc:///images/whiteDropIndicator.png"
- color: MoneroComponents.Style.defaultFontColor
- opacity: MoneroComponents.Style.blackTheme ? 1 : 0.75
+ color: MonzeroComponents.Style.defaultFontColor
+ opacity: MonzeroComponents.Style.blackTheme ? 1 : 0.75
fontAwesomeFallbackIcon: FontAwesome.arrowDown
fontAwesomeFallbackSize: 14
- MoneroEffects.ColorTransition {
+ MonzeroEffects.ColorTransition {
targetObj: indicatorImage
blackColor: "white"
whiteColor: "black"