Skip to content

Commit

Permalink
src/mumble/Settings.cpp: Disable Overlay by default
Browse files Browse the repository at this point in the history
As requested in #3515 this commit disables the overlay by default. This
is so that Mumbke doesn't try to hook into all system processes for
users that don't explicitly want this behavior.
  • Loading branch information
Krzmbrzl committed Apr 5, 2020
1 parent 39bbb93 commit 492e0b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mumble/Settings.cpp
Expand Up @@ -102,7 +102,7 @@ const QString Settings::cqsDefaultPushClickOn = QLatin1String(":/on.ogg");
const QString Settings::cqsDefaultPushClickOff = QLatin1String(":/off.ogg");

OverlaySettings::OverlaySettings() {
bEnable = true;
bEnable = false;

fX = 1.0f;
fY = 0.0f;
Expand Down

0 comments on commit 492e0b4

Please sign in to comment.