Browse Source

qml: no auto caps on import and master key controls

master
Sander van Grieken 3 years ago
parent
commit
5600375d51
  1. 2
      electrum/gui/qml/components/wizard/WCHaveMasterKey.qml
  2. 2
      electrum/gui/qml/components/wizard/WCImport.qml

2
electrum/gui/qml/components/wizard/WCHaveMasterKey.qml

@ -122,7 +122,7 @@ WizardComponent {
if (activeFocus) if (activeFocus)
verifyMasterKey(text) verifyMasterKey(text)
} }
inputMethodHints: Qt.ImhSensitiveData | Qt.ImhNoPredictiveText inputMethodHints: Qt.ImhSensitiveData | Qt.ImhNoPredictiveText | Qt.ImhNoAutoUppercase
} }
ColumnLayout { ColumnLayout {
ToolButton { ToolButton {

2
electrum/gui/qml/components/wizard/WCImport.qml

@ -40,7 +40,7 @@ WizardComponent {
focus: true focus: true
wrapMode: TextEdit.WrapAnywhere wrapMode: TextEdit.WrapAnywhere
onTextChanged: valid = verify(text) onTextChanged: valid = verify(text)
inputMethodHints: Qt.ImhSensitiveData | Qt.ImhNoPredictiveText inputMethodHints: Qt.ImhSensitiveData | Qt.ImhNoPredictiveText | Qt.ImhNoAutoUppercase
} }
ColumnLayout { ColumnLayout {
Layout.alignment: Qt.AlignTop Layout.alignment: Qt.AlignTop

Loading…
Cancel
Save