diff options
Diffstat (limited to 'pugl/pugl_osx.m')
-rw-r--r-- | pugl/pugl_osx.m | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pugl/pugl_osx.m b/pugl/pugl_osx.m index 464a8a2..3b62fae 100644 --- a/pugl/pugl_osx.m +++ b/pugl/pugl_osx.m @@ -459,6 +459,9 @@ puglCreateWindow(PuglView* view, const char* title) [window setPuglview:view]; [window setTitle:titleString]; + if (view->min_width || view->min_height) { + [window setContentMinSize:NSMakeSize(view->min_width, view->min_height)]; + } impl->glview = [PuglOpenGLView new]; impl->window = window; |