diff options
author | Matthias Clasen <mclasen@redhat.com> | 2013-08-31 00:14:58 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2013-08-31 00:16:28 -0400 |
commit | 3442933dd7ea6c9f411a021a19202b91cc090610 (patch) | |
tree | 5243877dd7d91b20636ff28b75aff0cd275ac7f1 /gtk/gtksettings.c | |
parent | 350569124d90b84f1531315cff8f4c05dc7d8c03 (diff) | |
download | gtk+-3442933dd7ea6c9f411a021a19202b91cc090610.tar.gz |
Revert "Deprecate and ignore gtk-entry-password-hint-timeout"
This reverts commit 4b5a389e88af7e7a1fa9e33294642dcfbc2832ec.
This change caused considerable concern about accidental
leaking of passwords, see e.g.
https://bugzilla.gnome.org/show_bug.cgi?id=706563
https://bugzilla.gnome.org/show_bug.cgi?id=706873
https://bugzilla.redhat.com/show_bug.cgi?id=994237
We may have to do something else for password entries, such
as the windows-style 'peekabo' icon.
Diffstat (limited to 'gtk/gtksettings.c')
-rw-r--r-- | gtk/gtksettings.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gtk/gtksettings.c b/gtk/gtksettings.c index 2095bfbb17..700d1acfbe 100644 --- a/gtk/gtksettings.c +++ b/gtk/gtksettings.c @@ -1327,16 +1327,14 @@ gtk_settings_class_init (GtkSettingsClass *class) * last char. 600 is a good value for enabling it. * * Since: 2.10 - * - * Deprecated: 3.10: This setting is ignored */ result = settings_install_property_parser (class, g_param_spec_uint ("gtk-entry-password-hint-timeout", P_("Password Hint Timeout"), P_("How long to show the last input character in hidden entries"), 0, G_MAXUINT, - 600, - GTK_PARAM_READWRITE | G_PARAM_DEPRECATED), + 0, + GTK_PARAM_READWRITE), NULL); g_assert (result == PROP_ENTRY_PASSWORD_HINT_TIMEOUT); |