Skip to content

Commit faaa6ca

Browse files
germanfrclefebvre
authored andcommitted
Sound applet: fix missing muted icon (#7402)
"microphone-sensitivity-none" does not exist in Adwaita, it's "microphone-sensitivity-muted".
1 parent 2f5a2d9 commit faaa6ca

File tree

1 file changed

+14
-12
lines changed

1 file changed

+14
-12
lines changed

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

+14-12
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ VolumeSlider.prototype = {
103103

104104
this.app_icon = app_icon;
105105
if (this.app_icon == null) {
106-
this.iconName = this.isMic ? "microphone-sensitivity-none" : "audio-volume-muted";
106+
this.iconName = this.isMic ? "microphone-sensitivity-muted" : "audio-volume-muted";
107107
this.icon = new St.Icon({icon_name: this.iconName, icon_type: St.IconType.SYMBOLIC, icon_size: 16});
108108
}
109109
else {
@@ -193,16 +193,18 @@ VolumeSlider.prototype = {
193193
},
194194

195195
_volumeToIcon: function(value){
196-
if(value < 0.005)
197-
return this.isMic? "microphone-sensitivity-none" : "audio-volume-muted";
198-
let n = Math.floor(3 * value), icon;
199-
if(n < 1)
200-
icon = "low";
201-
else if(n < 2)
202-
icon = "medium";
203-
else
204-
icon = "high";
205-
196+
let icon;
197+
if(value < 0.005) {
198+
icon = "muted";
199+
} else {
200+
let n = Math.floor(3 * value);
201+
if(n < 1)
202+
icon = "low";
203+
else if(n < 2)
204+
icon = "medium";
205+
else
206+
icon = "high";
207+
}
206208
return this.isMic? "microphone-sensitivity-" + icon : "audio-volume-" + icon;
207209
}
208210
};
@@ -965,7 +967,7 @@ MyApplet.prototype = {
965967
this.actor.connect('scroll-event', Lang.bind(this, this._onScrollEvent));
966968

967969
this.mute_out_switch = new PopupMenu.PopupSwitchIconMenuItem(_("Mute output"), false, "audio-volume-muted", St.IconType.SYMBOLIC);
968-
this.mute_in_switch = new PopupMenu.PopupSwitchIconMenuItem(_("Mute input"), false, "microphone-sensitivity-none", St.IconType.SYMBOLIC);
970+
this.mute_in_switch = new PopupMenu.PopupSwitchIconMenuItem(_("Mute input"), false, "microphone-sensitivity-muted", St.IconType.SYMBOLIC);
969971
this._applet_context_menu.addMenuItem(this.mute_out_switch);
970972
this._applet_context_menu.addMenuItem(this.mute_in_switch);
971973

0 commit comments

Comments
 (0)