@@ -103,7 +103,7 @@ VolumeSlider.prototype = {
103
103
104
104
this . app_icon = app_icon ;
105
105
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" ;
107
107
this . icon = new St . Icon ( { icon_name : this . iconName , icon_type : St . IconType . SYMBOLIC , icon_size : 16 } ) ;
108
108
}
109
109
else {
@@ -193,16 +193,18 @@ VolumeSlider.prototype = {
193
193
} ,
194
194
195
195
_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
+ }
206
208
return this . isMic ? "microphone-sensitivity-" + icon : "audio-volume-" + icon ;
207
209
}
208
210
} ;
@@ -965,7 +967,7 @@ MyApplet.prototype = {
965
967
this . actor . connect ( 'scroll-event' , Lang . bind ( this , this . _onScrollEvent ) ) ;
966
968
967
969
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 ) ;
969
971
this . _applet_context_menu . addMenuItem ( this . mute_out_switch ) ;
970
972
this . _applet_context_menu . addMenuItem ( this . mute_in_switch ) ;
971
973
0 commit comments