Use new icons, delete old ones

This commit is contained in:
Piotr Osiewicz 2023-06-22 18:58:11 +02:00
parent 18c4d43ee7
commit f774dbfe2e
5 changed files with 2 additions and 13 deletions

View file

@ -500,10 +500,10 @@ impl CollabTitlebarItem {
let icon;
let tooltip;
if room.read(cx).is_deafened().unwrap_or(false) {
icon = "icons/speakers_inactive_12.svg";
icon = "icons/radix/speaker-off.svg";
tooltip = "Unmute speakers\nRight click for options";
} else {
icon = "icons/speakers_active_12.svg";
icon = "icons/radix/speaker-loud.svg";
tooltip = "Mute speakers\nRight click for options";
}