computerscare-vcv-modules

computerscare modules for VCV Rack
Log | Files | Refs

commit 38e14ff23292dec213dd9171860f3fe0319486f4
parent 20162386d6820c8c980e1ca13c82d5481f48ccd5
Author: freddyz <[email protected]>
Date:   Wed,  3 Feb 2021 21:07:24 -0600

blank respect keyboard actions even with modifier keys.  this is a hack, not sure why this isnt working right on windows

Diffstat:
Msrc/ComputerscareBlank.cpp | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/ComputerscareBlank.cpp b/src/ComputerscareBlank.cpp @@ -1146,7 +1146,7 @@ struct ComputerscareBlankWidget : MenuParamModuleWidget { } break; } } - if (e.action == GLFW_RELEASE && !e.mods ) { + if (e.action == GLFW_RELEASE) { switch (e.key) { case GLFW_KEY_K: { blankModule->goToFrame(0);