Disable conversation actions by default

This commit is contained in:
M66B
2021-11-02 13:58:14 +01:00
parent 17ba2ce90e
commit a70175400f
3 changed files with 6 additions and 2 deletions

View File

@@ -2764,7 +2764,7 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
@RequiresApi(api = Build.VERSION_CODES.Q)
private ConversationActions getConversationActions(TupleMessageEx message, Document document, Context context) {
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
boolean conversation_actions = prefs.getBoolean("conversation_actions", true);
boolean conversation_actions = prefs.getBoolean("conversation_actions", false);
boolean conversation_actions_replies = prefs.getBoolean("conversation_actions_replies", true);
if (!conversation_actions)
return null;