DPF

DISTRHO Plugin Framework
Log | Files | Refs | Submodules | README | LICENSE

commit dd6e65bc88345263942d40e8e8ed46ee14ea7d3b
parent aad10058029ec4afe209b099a1ac8e2e8c8a2f25
Author: falkTX <falktx@gmail.com>
Date:   Thu,  3 Aug 2017 15:47:08 +0200

Fix X11 never receiving onSpecial events
Fixes #14

Diffstat:
Mdgl/src/pugl/pugl_x11.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dgl/src/pugl/pugl_x11.c b/dgl/src/pugl/pugl_x11.c @@ -441,7 +441,7 @@ dispatchKey(PuglView* view, XEvent* event, bool press) view->redisplay = false; return; } - if (n == 0) { + if (n == 0 && sym == 0) { goto send_event; return; }