fix: Use microphone icons for input

This commit is contained in:
Fabio Lenherr / DashieTM 2023-11-16 10:08:41 +01:00
parent b6f447b11c
commit c659938c50
3 changed files with 8 additions and 10 deletions

View file

@ -66,10 +66,10 @@ impl SourceEntry {
let index = stream.index;
if muted {
imp.resetSourceMute
.set_icon_name("audio-volume-muted-symbolic");
.set_icon_name("microphone-disabled-symbolic");
} else {
imp.resetSourceMute
.set_icon_name("audio-volume-high-symbolic");
.set_icon_name("audio-input-microphone-symbolic");
}
toggle_source_mute(index, muted);
}));