Disable automatic copy on decrypt by default (#1006)
Fixes #476 Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
parent
1c4ac91c6c
commit
e0350043d0
2 changed files with 2 additions and 1 deletions
|
@ -11,6 +11,7 @@ All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
- Slightly reduce APK size
|
- Slightly reduce APK size
|
||||||
- Always show the parent path in entries
|
- Always show the parent path in entries
|
||||||
|
- Passwords will no longer be copied to the clipboard by default
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
|
|
|
@ -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)
|
copyPasswordToClipboard(entry.password)
|
||||||
}
|
}
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue