summaryrefslogtreecommitdiff
path: root/wizard/SeedListItem.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 /wizard/SeedListItem.qml
parent81f33c7e00bf183823909a02e6d96ce11e41adce (diff)
downloadmonzero-gui-phase0-20260815.tar.gz
monzero-gui-phase0-20260815.tar.xz
monzero-gui-phase0-20260815.zip
Establish Monzero GUI Phase 0 baselinemonzero-gui-phase0-20260815
Diffstat (limited to 'wizard/SeedListItem.qml')
-rw-r--r--wizard/SeedListItem.qml18
1 files changed, 9 insertions, 9 deletions
diff --git a/wizard/SeedListItem.qml b/wizard/SeedListItem.qml
index 71212cbd..4905211a 100644
--- a/wizard/SeedListItem.qml
+++ b/wizard/SeedListItem.qml
@@ -1,4 +1,4 @@
-import "../components" as MoneroComponents;
+import "../components" as MonzeroComponents;
import QtQuick 2.9
import QtQuick.Layouts 1.2
import FontAwesome 1.0
@@ -82,14 +82,14 @@ ColumnLayout {
id: wordRow
spacing: 0
- MoneroComponents.Label {
- color: lineEdit.inputHasFocus ? MoneroComponents.Style.defaultFontColor : MoneroComponents.Style.dimmedFontColor
+ MonzeroComponents.Label {
+ color: lineEdit.inputHasFocus ? MonzeroComponents.Style.defaultFontColor : MonzeroComponents.Style.dimmedFontColor
fontSize: 13
text: (wordNumber + 1)
themeTransition: false
}
- MoneroComponents.LineEdit {
+ MonzeroComponents.LineEdit {
id: lineEdit
property bool firstUserInput: true
inputHeight: 29
@@ -111,17 +111,17 @@ ColumnLayout {
onTabPressed: focusOnNextField()
}
- MoneroComponents.Label {
+ MonzeroComponents.Label {
id: wordText
Layout.leftMargin: 10
- color: MoneroComponents.Style.defaultFontColor
+ color: MonzeroComponents.Style.defaultFontColor
fontSize: seedListItem.focus ? 19 : 16
fontBold: true
text: word
themeTransition: false
}
- MoneroComponents.TextPlain {
+ MonzeroComponents.TextPlain {
id: icon
Layout.leftMargin: wordsMatch ? 10 : 0
property bool wordsMatch: lineEdit.text === wordText.text
@@ -131,7 +131,7 @@ ColumnLayout {
font.styleName: "Solid"
font.pixelSize: 15
text: wordsMatch ? FontAwesome.checkCircle : FontAwesome.exclamationCircle
- color: wordsMatch ? (MoneroComponents.Style.blackTheme ? "#00FF00" : "#008000") : "#FF0000"
+ color: wordsMatch ? (MonzeroComponents.Style.blackTheme ? "#00FF00" : "#008000") : "#FF0000"
themeTransition: false
onTextChanged: {
if (wizardCreateWallet2.seedListGrid && wordsMatch) {
@@ -146,7 +146,7 @@ ColumnLayout {
Rectangle {
id: underLine
- color: lineEdit.inputHasFocus ? MoneroComponents.Style.defaultFontColor : MoneroComponents.Style.appWindowBorderColor
+ color: lineEdit.inputHasFocus ? MonzeroComponents.Style.defaultFontColor : MonzeroComponents.Style.appWindowBorderColor
Layout.fillWidth: true
height: 1
}