diff options
Diffstat (limited to 'components/Dialog.qml')
| -rw-r--r-- | components/Dialog.qml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/components/Dialog.qml b/components/Dialog.qml index 0cd712fa..7fd99f94 100644 --- a/components/Dialog.qml +++ b/components/Dialog.qml @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2024, The Monero Project +// Copyright (c) 2021-2024, The Monzero Project // // All rights reserved. // @@ -30,7 +30,7 @@ import QtQuick 2.9 import QtQuick.Controls 2.2 import QtQuick.Layouts 1.1 -import "." as MoneroComponents +import "." as MonzeroComponents Popup { id: dialog @@ -39,9 +39,9 @@ Popup { property alias title: header.text background: Rectangle { - 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 - color: MoneroComponents.Style.blackTheme ? "black" : "white" + color: MonzeroComponents.Style.blackTheme ? "black" : "white" radius: 10 } closePolicy: Popup.CloseOnEscape @@ -56,9 +56,9 @@ Popup { Text { id: header - color: MoneroComponents.Style.defaultFontColor + color: MonzeroComponents.Style.defaultFontColor font.bold: true - font.family: MoneroComponents.Style.fontRegular.name + font.family: MonzeroComponents.Style.fontRegular.name font.pixelSize: 18 visible: text != "" } |
