diff --git a/CHANGELOG.md b/CHANGELOG.md index 128274c06..af559a43a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ All notable changes to this project will be documented in this file. - Slightly reduce APK size - Always show the parent path in entries +- Passwords will no longer be copied to the clipboard by default ### Fixed diff --git a/app/src/main/java/com/zeapo/pwdstore/crypto/DecryptActivity.kt b/app/src/main/java/com/zeapo/pwdstore/crypto/DecryptActivity.kt index cc70dcc1a..79f9e6da4 100644 --- a/app/src/main/java/com/zeapo/pwdstore/crypto/DecryptActivity.kt +++ b/app/src/main/java/com/zeapo/pwdstore/crypto/DecryptActivity.kt @@ -206,7 +206,7 @@ class DecryptActivity : BasePgpActivity(), OpenPgpServiceConnection.OnBound { } } - if (settings.getBoolean(PreferenceKeys.COPY_ON_DECRYPT, true)) { + if (settings.getBoolean(PreferenceKeys.COPY_ON_DECRYPT, false)) { copyPasswordToClipboard(entry.password) } } catch (e: Exception) {