Skip to content

Commit

Permalink
Add missing check for hotkeys being enabled. Fixes #131.
Browse files Browse the repository at this point in the history
  • Loading branch information
fholger committed Dec 27, 2021
1 parent 5548315 commit 1c2b0c1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/postprocess/PostProcessor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -627,7 +627,9 @@ namespace vr {
}
}

CheckHotkeys();
if (Config::Instance().hotkeysEnabled) {
CheckHotkeys();
}

if (takeCapture && eEye == Eye_Left) {
SaveTextureToFile(outputTexture);
Expand Down

0 comments on commit 1c2b0c1

Please sign in to comment.