From 5a2a83a3fdf7ac17ccdae3775dc77d5e60a28e57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20H=C3=B6rist?= Date: Mon, 23 Jan 2017 18:06:07 +0100 Subject: [PATCH] Update available features on windows On Windows we can now save account passwords in the Windows Credential Vault --- src/features_window.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/features_window.py b/src/features_window.py index 19ef8b3fc..23ea84897 100644 --- a/src/features_window.py +++ b/src/features_window.py @@ -69,7 +69,7 @@ class FeaturesWindow: _('Password encryption'): (self.some_keyring_available, _('Passwords can be stored securely and not just in plaintext.'), _('Requires libsecret and a provider (such as GNOME Keyring and KSecretService).'), - _('Feature not available under Windows.')), + _('On Windows the Windows Credential Vault is used.')), _('Spell Checker'): (self.speller_available, _('Spellchecking of composed messages.'), _('Requires libgtkspell.'), @@ -183,7 +183,7 @@ class FeaturesWindow: def some_keyring_available(self): if os.name == 'nt': - return False + return True try: gi.require_version('Secret', '1') from gi.repository import Secret