From b0a6bb79f60d8e879fbf7bc844fa4506dbdc39e5 Mon Sep 17 00:00:00 2001 From: Greyson Parrelli Date: Mon, 2 Dec 2019 22:42:54 -0500 Subject: [PATCH] Fix issue with setting Note to Self color. Fixes #9235 --- .../thoughtcrime/securesms/RecipientPreferenceActivity.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/org/thoughtcrime/securesms/RecipientPreferenceActivity.java b/src/org/thoughtcrime/securesms/RecipientPreferenceActivity.java index 3f8cda0d90..cd9907c143 100644 --- a/src/org/thoughtcrime/securesms/RecipientPreferenceActivity.java +++ b/src/org/thoughtcrime/securesms/RecipientPreferenceActivity.java @@ -412,7 +412,9 @@ public class RecipientPreferenceActivity extends PassphraseRequiredActionBarActi if (privacyCategory != null) privacyCategory.setVisible(false); if (divider != null) divider.setVisible(false); if (callCategory != null) callCategory.setVisible(false); - } else if (recipient.isGroup()) { + } + + if (recipient.isGroup()) { if (colorPreference != null) colorPreference.setVisible(false); if (identityPreference != null) identityPreference.setVisible(false); if (callCategory != null) callCategory.setVisible(false);