Details
-
Bug
-
Resolution: Fixed
-
P2: Important
-
6.7.1
-
1594b2efc (dev), 3386c861d (6.8)
Description
It does not seem to have any effect. The password field is always visible when there is a focus in the TextInput. When it loses the focus, whole field is immediately masked.
import QtQuick.Window import QtQuick.Controls.Basic import QtQuick ApplicationWindow { id: main visible: true width: 300 height: 300 TextField { focus: true echoMode: TextField.PasswordEchoOnEdit passwordMaskDelay: 100 } }