diff options
Diffstat (limited to 'wizard/WizardMenuItem.qml')
| -rw-r--r-- | wizard/WizardMenuItem.qml | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/wizard/WizardMenuItem.qml b/wizard/WizardMenuItem.qml index 5e9964b5..149ac806 100644 --- a/wizard/WizardMenuItem.qml +++ b/wizard/WizardMenuItem.qml @@ -1,4 +1,4 @@ -// Copyright (c) 2014-2024, The Monero Project +// Copyright (c) 2014-2024, The Monzero Project // // All rights reserved. // @@ -32,7 +32,7 @@ import QtQuick.Layouts 1.2 import QtGraphicalEffects 1.0 import QtQuick.Controls 2.0 -import "../components" as MoneroComponents +import "../components" as MonzeroComponents RowLayout { id: rowlayout @@ -50,7 +50,7 @@ RowLayout { Layout.preferredWidth: 70 Layout.preferredHeight: 70 - MoneroComponents.CheckBox { + MonzeroComponents.CheckBox { id: checkboxItem anchors.horizontalCenter: parent.horizontalCenter anchors.verticalCenter: parent.verticalCenter @@ -60,14 +60,14 @@ RowLayout { Image { id: icon - visible: !rowlayout.checkbox && (!isOpenGL || MoneroComponents.Style.blackTheme) + visible: !rowlayout.checkbox && (!isOpenGL || MonzeroComponents.Style.blackTheme) anchors.horizontalCenter: parent.horizontalCenter anchors.verticalCenter: parent.verticalCenter source: "" } DropShadow { - visible: !rowlayout.checkbox && (isOpenGL && !MoneroComponents.Style.blackTheme) + visible: !rowlayout.checkbox && (isOpenGL && !MonzeroComponents.Style.blackTheme) anchors.fill: icon horizontalOffset: 3 verticalOffset: 3 @@ -92,15 +92,15 @@ RowLayout { Layout.fillWidth: true spacing: 0 - MoneroComponents.TextPlain { + MonzeroComponents.TextPlain { id: header Layout.fillWidth: true leftPadding: parent.leftPadding topPadding: 0 - color: MoneroComponents.Style.defaultFontColor - opacity: MoneroComponents.Style.blackTheme ? 1.0 : 0.8 + color: MonzeroComponents.Style.defaultFontColor + opacity: MonzeroComponents.Style.blackTheme ? 1.0 : 0.8 font.bold: true - font.family: MoneroComponents.Style.fontRegular.name + font.family: MonzeroComponents.Style.fontRegular.name font.pixelSize: { if (wizardController.layoutScale == 4) { return 16; @@ -120,11 +120,11 @@ RowLayout { } } - MoneroComponents.TextPlain { + MonzeroComponents.TextPlain { id: body Layout.fillWidth: true - color: MoneroComponents.Style.dimmedFontColor - font.family: MoneroComponents.Style.fontRegular.name + color: MonzeroComponents.Style.dimmedFontColor + font.family: MonzeroComponents.Style.fontRegular.name font.pixelSize: { if (wizardController.layoutScale <= 2 ){ return 16; |
