Skip to content

Commit

Permalink
1.6 release: Disable using keychain on macOS by default
Browse files Browse the repository at this point in the history
It shows a ton of popups when it's used for the first time (or every
time if "Always allow" is not granted), it's really annoying to use at
this state.
  • Loading branch information
MartinBriza committed Oct 19, 2023
1 parent 0bd1579 commit 2b3d92b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions modules/Lith/Core/settings.h
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,11 @@ class LITHCORE_EXPORT Settings : public QObject {
SETTING(bool, openLinksDirectly, false)
SETTING(bool, openLinksDirectlyInBrowser, false)

#ifdef Q_OS_MACOS
SETTING(bool, encryptedCredentials, false)
#else
SETTING(bool, encryptedCredentials, true)
#endif
Q_PROPERTY(bool credentialEncryptionAvailable READ credentialEncryptionAvailable CONSTANT)
static bool credentialEncryptionAvailable();

Expand Down

0 comments on commit 2b3d92b

Please sign in to comment.