Fix issue with setting Note to Self color.

Fixes #9235
master
Greyson Parrelli 2019-12-02 22:42:54 -05:00
parent de52bf50a2
commit b0a6bb79f6
1 changed files with 3 additions and 1 deletions

View File

@ -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);