Skip to content

Commit 1c2b0c1

Browse files
committed
Add missing check for hotkeys being enabled. Fixes #131.
1 parent 5548315 commit 1c2b0c1

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/postprocess/PostProcessor.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -627,7 +627,9 @@ namespace vr {
627627
}
628628
}
629629

630-
CheckHotkeys();
630+
if (Config::Instance().hotkeysEnabled) {
631+
CheckHotkeys();
632+
}
631633

632634
if (takeCapture && eEye == Eye_Left) {
633635
SaveTextureToFile(outputTexture);

0 commit comments

Comments
 (0)