Skip to content

Commit bc58cf2

Browse files
committed
sound applet: Fix the context menu's input mute icon.
1 parent 4dd4e08 commit bc58cf2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

files/usr/share/cinnamon/applets/[email protected]/applet.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1023,7 +1023,7 @@ class CinnamonSoundApplet extends Applet.TextIconApplet {
10231023
this.actor.connect('scroll-event', (...args) => this._onScrollEvent(...args));
10241024

10251025
this.mute_out_switch = new PopupMenu.PopupSwitchIconMenuItem(_("Mute output"), false, "audio-volume-muted", St.IconType.SYMBOLIC);
1026-
this.mute_in_switch = new PopupMenu.PopupSwitchIconMenuItem(_("Mute input"), false, "microphone-sensitivity-none", St.IconType.SYMBOLIC);
1026+
this.mute_in_switch = new PopupMenu.PopupSwitchIconMenuItem(_("Mute input"), false, "microphone-sensitivity-muted", St.IconType.SYMBOLIC);
10271027
this._applet_context_menu.addMenuItem(this.mute_out_switch);
10281028
this._applet_context_menu.addMenuItem(this.mute_in_switch);
10291029
this.mute_in_switch.actor.hide();

0 commit comments

Comments
 (0)