Fix notification icons

This commit is contained in:
世界 2021-01-12 17:30:45 +08:00
parent 22a77a129c
commit 3a5a24b67d
No known key found for this signature in database
GPG Key ID: CD109927C34A63C4
3 changed files with 3 additions and 3 deletions

View File

@ -2310,7 +2310,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not
headerItem.addSubItem(clear_history, R.drawable.baseline_delete_sweep_24, LocaleController.getString("ClearHistory", R.string.ClearHistory));
}
if (currentUser == null || !currentUser.self) {
muteItem = headerItem.addSubItem(mute, R.drawable.msg_mute, null);
muteItem = headerItem.addSubItem(mute, R.drawable.baseline_volume_off_24_white, null);
}
if (ChatObject.isMegagroup(currentChat) || currentChat != null && !ChatObject.isChannel(currentChat)) {

View File

@ -676,8 +676,8 @@ public class AlertsCreator {
int[] icons = new int[]{
R.drawable.baseline_notifications_24,
R.drawable.deproko_baseline_clock_24,
R.drawable.deproko_baseline_clock_24,
R.drawable.baseline_notifications_paused_24,
R.drawable.baseline_notifications_paused_24,
R.drawable.baseline_settings_24,
R.drawable.baseline_notifications_off_24
};