there
From 3a315f4c796d8369e2ea1360830e3d0a798ed340 Mon Sep 17 00:00:00 2001 From: Tomaz Canabrava <[email protected]> Date: Wed, 7 Oct 2015 14:32:33 -0300 Subject: [PATCH] Passwords fields should have echoMode Password
so nobody can see what's being written. Signed-off-by: Tomaz Canabrava <[email protected]> --- qt-ui/preferences.ui | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/qt-ui/preferences.ui b/qt-ui/preferences.ui index 061ecff..de2d79b 100644 --- a/qt-ui/preferences.ui +++ b/qt-ui/preferences.ui @@ -164,7 +164,7 @@ </sizepolicy> </property> <property name="currentIndex"> - <number>5</number> + <number>4</number> </property> <widget class="QWidget" name="defaults_page"> <property name="sizePolicy"> @@ -1295,7 +1295,11 @@ </widget> </item> <item row="1" column="1"> - <widget class="QLineEdit" name="cloud_storage_password"/> + <widget class="QLineEdit" name="cloud_storage_password"> + <property name="echoMode"> + <enum>QLineEdit::Password</enum> + </property> + </widget> </item> <item row="1" column="2"> <widget class="QLineEdit" name="cloud_storage_pin"> @@ -1305,7 +1309,11 @@ </widget> </item> <item row="1" column="3"> - <widget class="QLineEdit" name="cloud_storage_new_passwd"/> + <widget class="QLineEdit" name="cloud_storage_new_passwd"> + <property name="echoMode"> + <enum>QLineEdit::Password</enum> + </property> + </widget> </item> <item row="2" column="0"> <widget class="QCheckBox" name="cloud_background_sync"> -- 2.6.1
_______________________________________________ subsurface mailing list [email protected] http://lists.subsurface-divelog.org/cgi-bin/mailman/listinfo/subsurface
