aboutsummaryrefslogtreecommitdiff
path: root/components/Input.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/Input.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/Input.qml')
-rw-r--r--components/Input.qml14
1 files changed, 7 insertions, 7 deletions
diff --git a/components/Input.qml b/components/Input.qml
index 3fb83af1..6299e001 100644
--- a/components/Input.qml
+++ b/components/Input.qml
@@ -1,4 +1,4 @@
-// Copyright (c) 2014-2024, The Monero Project
+// Copyright (c) 2014-2024, The Monzero Project
//
// All rights reserved.
//
@@ -29,24 +29,24 @@
import QtQuick.Controls 2.0
import QtQuick 2.9
-import "../components" as MoneroComponents
+import "../components" as MonzeroComponents
TextField {
id: textField
- font.family: MoneroComponents.Style.fontRegular.name
+ font.family: MonzeroComponents.Style.fontRegular.name
font.pixelSize: 18
font.bold: true
horizontalAlignment: TextInput.AlignLeft
selectByMouse: true
- 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 {
color: "transparent"
}
- MoneroComponents.ContextMenu {
+ MonzeroComponents.ContextMenu {
cursorShape: Qt.IBeamCursor
onCut: textField.cut();
onCopy: textField.copy();