From a32952fde689d2559193c4308abe8f1232993b68 Mon Sep 17 00:00:00 2001 From: pokamest Date: Mon, 19 Feb 2024 14:06:18 +0000 Subject: [PATCH] Qt.ImhNoAutoUppercase | Qt.ImhSensitiveData | Qt.ImhNoPredictiveText for all TextFields --- client/ui/qml/Controls2/TextFieldWithHeaderType.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/ui/qml/Controls2/TextFieldWithHeaderType.qml b/client/ui/qml/Controls2/TextFieldWithHeaderType.qml index 13405e4b..606aa83e 100644 --- a/client/ui/qml/Controls2/TextFieldWithHeaderType.qml +++ b/client/ui/qml/Controls2/TextFieldWithHeaderType.qml @@ -74,6 +74,8 @@ Item { enabled: root.textFieldEditable color: root.enabled ? root.textFieldTextColor : root.textFieldTextDisabledColor + inputMethodHints: Qt.ImhNoAutoUppercase | Qt.ImhSensitiveData | Qt.ImhNoPredictiveText + placeholderText: root.textFieldPlaceholderText placeholderTextColor: "#494B50"