commit a13a5e23fa9a9c09f022f134c4fece00c6d2adf1 parent 523a3062a3363c032844f2ad1da28b7d716c8683 Author: MTRNord <mtrnord1@gmail.com> Date: Mon, 21 Aug 2017 21:47:59 +0200 Make password field hidden echo Diffstat:
| M | qml/login.ui | | | 5 | ++++- |
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/qml/login.ui b/qml/login.ui @@ -87,7 +87,10 @@ <item row="1" column="1"> <widget class="QLineEdit" name="PasswordInput"> <property name="inputMethodHints"> - <set>Qt::ImhNoAutoUppercase|Qt::ImhSensitiveData</set> + <set>Qt::ImhHiddenText|Qt::ImhNoAutoUppercase|Qt::ImhNoPredictiveText|Qt::ImhSensitiveData</set> + </property> + <property name="echoMode"> + <enum>QLineEdit::Password</enum> </property> </widget> </item>