Skip to content

Commit

Permalink
FIX(client): Use correct off audio cue
Browse files Browse the repository at this point in the history
The off audio cue was incorrectly using on in a new configuration.
This commit sets the off audio cue to the correct one.

Fixes #6614
  • Loading branch information
tspivey committed Oct 23, 2024
1 parent cb01bfa commit a9c398a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mumble/Settings.h
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ struct Settings {
bool audioCueEnabledPTT = true;
bool audioCueEnabledVAD = false;
QString qsTxAudioCueOn = cqsDefaultPushClickOn;
QString qsTxAudioCueOff = cqsDefaultPushClickOn;
QString qsTxAudioCueOff = cqsDefaultPushClickOff;

bool bTxMuteCue = true;
bool muteCueShown = false;
Expand Down

0 comments on commit a9c398a

Please sign in to comment.