summaryrefslogtreecommitdiff
path: root/components/InputDialog.qml
diff options
context:
space:
mode:
Diffstat (limited to 'components/InputDialog.qml')
-rw-r--r--components/InputDialog.qml26
1 files changed, 13 insertions, 13 deletions
diff --git a/components/InputDialog.qml b/components/InputDialog.qml
index 40e3e445..eb21963c 100644
--- a/components/InputDialog.qml
+++ b/components/InputDialog.qml
@@ -1,4 +1,4 @@
-// Copyright (c) 2014-2024, The Monero Project
+// Copyright (c) 2014-2024, The Monzero Project
//
// All rights reserved.
//
@@ -33,7 +33,7 @@ import QtQuick.Layouts 1.1
import QtQuick.Controls.Styles 1.4
import QtQuick.Window 2.0
-import "../components" as MoneroComponents
+import "../components" as MonzeroComponents
Item {
id: root
@@ -79,33 +79,33 @@ Item {
Layout.fillWidth: true
font.pixelSize: 16
- font.family: MoneroComponents.Style.fontLight.name
+ font.family: MonzeroComponents.Style.fontLight.name
- color: MoneroComponents.Style.defaultFontColor
+ color: MonzeroComponents.Style.defaultFontColor
}
- MoneroComponents.Input {
+ MonzeroComponents.Input {
id : input
focus: true
Layout.topMargin: 6
Layout.fillWidth: true
horizontalAlignment: TextInput.AlignLeft
verticalAlignment: TextInput.AlignVCenter
- font.family: MoneroComponents.Style.fontLight.name
+ font.family: MonzeroComponents.Style.fontLight.name
font.pixelSize: 24
KeyNavigation.tab: okButton
bottomPadding: 10
leftPadding: 10
topPadding: 10
- color: MoneroComponents.Style.defaultFontColor
- selectionColor: MoneroComponents.Style.textSelectionColor
- selectedTextColor: MoneroComponents.Style.textSelectedColor
+ color: MonzeroComponents.Style.defaultFontColor
+ selectionColor: MonzeroComponents.Style.textSelectionColor
+ selectedTextColor: MonzeroComponents.Style.textSelectedColor
background: Rectangle {
radius: 2
- border.color: MoneroComponents.Style.inputBorderColorActive
+ border.color: MonzeroComponents.Style.inputBorderColorActive
border.width: 1
- color: MoneroComponents.Style.blackTheme ? "black" : "#A9FFFFFF"
+ color: MonzeroComponents.Style.blackTheme ? "black" : "#A9FFFFFF"
}
Keys.enabled: root.visible
@@ -127,7 +127,7 @@ Item {
Layout.topMargin: 16
Layout.alignment: Qt.AlignRight
- MoneroComponents.StandardButton {
+ MonzeroComponents.StandardButton {
id: cancelButton
primary: false
small: true
@@ -140,7 +140,7 @@ Item {
root.rejected()
}
}
- MoneroComponents.StandardButton {
+ MonzeroComponents.StandardButton {
id: okButton
small: true
width: 120