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
43
Wiki
Activity
Browse Source
Fix stupid bug that disables onDefocus() behavior completely
tags/v0.6.0
Andrew Belt
7 years ago
parent
7fdb1b0cd0
commit
57d21f5c29
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/window.cpp
+ 1
- 1
src/window.cpp
View File
@@ -80,7 +80,7 @@ void mouseButtonCallback(GLFWwindow *window, int button, int action, int mods) {
if (gFocusedWidget) {
// onDefocus
EventDefocus e;
w
->onDefocus(e);
gFocusedWidget
->onDefocus(e);
}
gFocusedWidget = NULL;
if (w) {
Write
Preview
Loading…
Cancel
Save