1
0

qml: no auto caps on import and master key controls

This commit is contained in:
Sander van Grieken
2023-04-29 13:42:10 +02:00
parent 56165c3790
commit 5600375d51
2 changed files with 2 additions and 2 deletions

View File

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

View File

@@ -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