This website works better with JavaScript.
Home
Help
Sign In
VCVRack
/
Rack
mirror of
https://github.com/VCVRack/Rack.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
38
Wiki
Activity
Browse Source
Add keypad Enter key command for module browser
tags/v0.6.1
Andrew Belt
6 years ago
parent
d3fa318d32
commit
2fa3db43b1
2 changed files
with
3 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
dep/nanosvg
+2
-1
src/app/RackScene.cpp
+ 1
- 1
dep/nanosvg
@@ -1 +1 @@
Subproject commit
9a74da4db5ac74083e444010d75114658581b9c7
Subproject commit
06c1f0f3bb041d69a73bb74067d063a700215b0e
+ 2
- 1
src/app/RackScene.cpp
View File
@@ -79,7 +79,8 @@ void RackScene::onHoverKey(EventHoverKey &e) {
e.consumed = true;
}
} break;
case GLFW_KEY_ENTER: {
case GLFW_KEY_ENTER:
case GLFW_KEY_KP_ENTER: {
appModuleBrowserCreate();
e.consumed = true;
} break;
Write
Preview
Loading…
Cancel
Save