diff options
author | David Robillard <d@drobilla.net> | 2012-04-30 20:55:55 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-04-30 20:55:55 +0000 |
commit | ca45ed7ccc334c8dc8065671ed436be705174b3c (patch) | |
tree | 5fd957deb1fa4fa86a2eea70c10b1b81b3ade7f7 /pugl | |
parent | 4818ea9d9d93722786a829df4b44e3f782824dde (diff) | |
download | pugl-ca45ed7ccc334c8dc8065671ed436be705174b3c.tar.gz pugl-ca45ed7ccc334c8dc8065671ed436be705174b3c.tar.bz2 pugl-ca45ed7ccc334c8dc8065671ed436be705174b3c.zip |
Implement key repeat ignore on Windows.
Diffstat (limited to 'pugl')
-rw-r--r-- | pugl/pugl_win.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pugl/pugl_win.cpp b/pugl/pugl_win.cpp index 6c4b07f..03bee11 100644 --- a/pugl/pugl_win.cpp +++ b/pugl/pugl_win.cpp @@ -212,8 +212,6 @@ puglProcessEvents(PuglView* view) { MSG msg; PAINTSTRUCT ps; - int button; - bool down = true; PuglKey key; while (PeekMessage(&msg, view->impl->hwnd, 0, 0, PM_REMOVE)) { setModifiers(view); @@ -265,6 +263,9 @@ puglProcessEvents(PuglView* view) } break; case WM_KEYDOWN: + if (view->ignoreKeyRepeat && (msg.lParam & (1 << 30))) { + break; + } // else nobreak case WM_KEYUP: if (key = keySymToSpecial(msg.wParam)) { if (view->specialFunc) { |