diff options
author | David Robillard <d@drobilla.net> | 2014-01-28 00:41:44 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2014-01-28 00:41:44 +0000 |
commit | 729e2d868af533dac4b2a4a000c40188edc8ea64 (patch) | |
tree | 8a3e4ba34e63173236b2d449e8543a78253ce2f6 /pugl/pugl_osx.m | |
parent | cae7d9e86a54721f516d746adb9a94ca92a32b3e (diff) | |
download | pugl-729e2d868af533dac4b2a4a000c40188edc8ea64.tar.gz pugl-729e2d868af533dac4b2a4a000c40188edc8ea64.tar.bz2 pugl-729e2d868af533dac4b2a4a000c40188edc8ea64.zip |
Fix wonky alignment.
Diffstat (limited to 'pugl/pugl_osx.m')
-rw-r--r-- | pugl/pugl_osx.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pugl/pugl_osx.m b/pugl/pugl_osx.m index 285d299..2480898 100644 --- a/pugl/pugl_osx.m +++ b/pugl/pugl_osx.m @@ -365,8 +365,8 @@ puglCreate(PuglNativeWindow parent, [window setPuglview:view]; [window setTitle:titleString]; - impl->glview = [PuglOpenGLView new]; - impl->window = window; + impl->glview = [PuglOpenGLView new]; + impl->window = window; impl->glview->puglview = view; [window setContentView:impl->glview]; |