diff options
author | David Robillard <d@drobilla.net> | 2019-06-25 21:42:55 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-06-27 19:41:48 +0200 |
commit | bf7bc771b2c6c77be9b935b8bfbf56677fba1754 (patch) | |
tree | 03c561b2139b07576d1ee2aac10d144d5f0bb284 /pugl/pugl_osx.m | |
parent | a6878f88c187d5957f22b9023fabe350ea702e5c (diff) | |
download | pugl-bf7bc771b2c6c77be9b935b8bfbf56677fba1754.tar.gz pugl-bf7bc771b2c6c77be9b935b8bfbf56677fba1754.tar.bz2 pugl-bf7bc771b2c6c77be9b935b8bfbf56677fba1754.zip |
Defer to NSOpenGLView reshape method
This apparently does nothing, but the compiler warns about the missing super
call.
Diffstat (limited to 'pugl/pugl_osx.m')
-rw-r--r-- | pugl/pugl_osx.m | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pugl/pugl_osx.m b/pugl/pugl_osx.m index 01b4d51..aaae212 100644 --- a/pugl/pugl_osx.m +++ b/pugl/pugl_osx.m @@ -173,6 +173,7 @@ struct PuglInternalsImpl { - (void) reshape { + [super reshape]; [[self openGLContext] update]; if (!puglview) { |