From bf7bc771b2c6c77be9b935b8bfbf56677fba1754 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Tue, 25 Jun 2019 21:42:55 +0200 Subject: Defer to NSOpenGLView reshape method This apparently does nothing, but the compiler warns about the missing super call. --- pugl/pugl_osx.m | 1 + 1 file changed, 1 insertion(+) (limited to 'pugl') 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) { -- cgit v1.2.1