fix mute button notification

This commit is contained in:
HF 2022-09-05 10:59:06 +02:00
parent 8326e63ef0
commit ec2907c0a6

View File

@ -78,7 +78,7 @@ function createKeyPressHandler(store) {
return;
case 'm':
store.dispatch(toggleMute());
store.dispatch(notify((store.getState().audio.mute)
store.dispatch(notify((store.getState().gui.mute)
? t`Muted Sound`
: t`Unmuted Sound`));
return;