diff options
author | Harsh Shandilya <msfjarvis@gmail.com> | 2020-08-16 21:51:13 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-16 21:51:13 +0530 |
commit | 12f6caef3726f684763fdba27bab0b15beefbbee (patch) | |
tree | c8ac400e430fb260cba65f180f8c13bc1d42bfb4 | |
parent | 2ffd1abb279bb0e1a8895ef26b805a1a1651516c (diff) |
Also invert copy_on_decrypt preference value (#1024)
Fixes: e0350043d0cb ("Disable automatic copy on decrypt by default (#1006)")
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
-rw-r--r-- | app/src/main/res/xml/preference.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/src/main/res/xml/preference.xml b/app/src/main/res/xml/preference.xml index 318b8431..50300b5b 100644 --- a/app/src/main/res/xml/preference.xml +++ b/app/src/main/res/xml/preference.xml @@ -154,7 +154,7 @@ app:summary="@string/show_extra_content_pref_summary" app:title="@string/show_extra_content_pref_title" /> <CheckBoxPreference - app:defaultValue="true" + app:defaultValue="false" app:dialogTitle="@string/pref_copy_dialog_title" app:key="copy_on_decrypt" app:summary="@string/pref_copy_dialog_title" |