mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-06 09:03:56 +02:00
Disable conversation actions by default
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user