diff options
author | David Robillard <d@drobilla.net> | 2019-07-21 18:16:48 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-07-21 18:17:04 +0200 |
commit | 17af0352387a536c461cf366132b3d6c90ce3c70 (patch) | |
tree | 2bd2697d09ef8733f7f980528fbb87ac02307297 /pugl/pugl_osx.m | |
parent | 1ffbc79483c1e068de412cabe7e892e24033d693 (diff) | |
download | pugl-17af0352387a536c461cf366132b3d6c90ce3c70.tar.gz pugl-17af0352387a536c461cf366132b3d6c90ce3c70.tar.bz2 pugl-17af0352387a536c461cf366132b3d6c90ce3c70.zip |
Implement puglGrabFocus on Windows and MacOS
Diffstat (limited to 'pugl/pugl_osx.m')
-rw-r--r-- | pugl/pugl_osx.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pugl/pugl_osx.m b/pugl/pugl_osx.m index 2507fcb..28ea313 100644 --- a/pugl/pugl_osx.m +++ b/pugl/pugl_osx.m @@ -712,7 +712,7 @@ puglDestroy(PuglView* view) void puglGrabFocus(PuglView* view) { - // TODO + [view->impl->window makeKeyWindow]; } PuglStatus |