diff --git a/debian/changelog b/debian/changelog index a8d9b2d..47a8c31 100644 --- a/debian/changelog +++ b/debian/changelog @@ -5,9 +5,9 @@ calamares-qml-settings-nitrux (1.6.8+new-dev) nitrux; urgency=medium * Fix a TypeError in usersq. * Change text to clarify that the input field for the hostname IS FOR THE HOSTNAME. * Make the input field for the hostname no accept spaces. - * Reduce the time that the characters are visible in the password field. + * Reduce the time that the characters are visible in the password field to 0. - -- Uri Herrera Mon, 10 Jun 2024 23:41:00 -0500 + -- Uri Herrera Mon, 10 Jun 2024 00:13:00 -0500 calamares-qml-settings-nitrux (1.6.7+new-dev) nitrux; urgency=medium diff --git a/etc/calamares/branding/nxos/usersq.qml b/etc/calamares/branding/nxos/usersq.qml index 66e2a88..251adfd 100644 --- a/etc/calamares/branding/nxos/usersq.qml +++ b/etc/calamares/branding/nxos/usersq.qml @@ -154,7 +154,7 @@ ResponsiveBase text: config.userPassword echoMode: TextInput.Password - passwordMaskDelay: 5 + passwordMaskDelay: 0 inputMethodHints: Qt.ImhNoAutoUppercase onTextChanged: config.setUserPassword(text) @@ -177,7 +177,7 @@ ResponsiveBase onTextChanged: config.setUserPasswordSecondary(text) echoMode: TextInput.Password - passwordMaskDelay: 5 + passwordMaskDelay: 0 inputMethodHints: Qt.ImhNoAutoUppercase background: Rectangle