From 5600375d51b942dfeab598b5f6f850c87bd9bf74 Mon Sep 17 00:00:00 2001 From: Sander van Grieken Date: Sat, 29 Apr 2023 13:42:10 +0200 Subject: [PATCH] qml: no auto caps on import and master key controls --- electrum/gui/qml/components/wizard/WCHaveMasterKey.qml | 2 +- electrum/gui/qml/components/wizard/WCImport.qml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/electrum/gui/qml/components/wizard/WCHaveMasterKey.qml b/electrum/gui/qml/components/wizard/WCHaveMasterKey.qml index 0a1ab3734..9c8fde40f 100644 --- a/electrum/gui/qml/components/wizard/WCHaveMasterKey.qml +++ b/electrum/gui/qml/components/wizard/WCHaveMasterKey.qml @@ -122,7 +122,7 @@ WizardComponent { if (activeFocus) verifyMasterKey(text) } - inputMethodHints: Qt.ImhSensitiveData | Qt.ImhNoPredictiveText + inputMethodHints: Qt.ImhSensitiveData | Qt.ImhNoPredictiveText | Qt.ImhNoAutoUppercase } ColumnLayout { ToolButton { diff --git a/electrum/gui/qml/components/wizard/WCImport.qml b/electrum/gui/qml/components/wizard/WCImport.qml index 3129082b8..8a5aca37f 100644 --- a/electrum/gui/qml/components/wizard/WCImport.qml +++ b/electrum/gui/qml/components/wizard/WCImport.qml @@ -40,7 +40,7 @@ WizardComponent { focus: true wrapMode: TextEdit.WrapAnywhere onTextChanged: valid = verify(text) - inputMethodHints: Qt.ImhSensitiveData | Qt.ImhNoPredictiveText + inputMethodHints: Qt.ImhSensitiveData | Qt.ImhNoPredictiveText | Qt.ImhNoAutoUppercase } ColumnLayout { Layout.alignment: Qt.AlignTop