From d929b451c68b9338470179a274792889c102519b Mon Sep 17 00:00:00 2001 From: Uri Herrera Date: Tue, 11 Jun 2024 00:13:23 -0600 Subject: [PATCH] update pkg --- debian/changelog | 4 ++-- etc/calamares/branding/nxos/usersq.qml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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