From e1c4bbe0a88f5f103665447f1ea062a20eec9f63 Mon Sep 17 00:00:00 2001 From: falkTX Date: Mon, 27 Jan 2014 12:39:24 -0800 Subject: [PATCH] A previous osx fix attempt was wrong, correct it --- dgl/src/pugl/pugl_osx_extended.m | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dgl/src/pugl/pugl_osx_extended.m b/dgl/src/pugl/pugl_osx_extended.m index 886de058..1110a89f 100644 --- a/dgl/src/pugl/pugl_osx_extended.m +++ b/dgl/src/pugl/pugl_osx_extended.m @@ -41,11 +41,11 @@ void puglImplSetSize(PuglView* view, unsigned int width, unsigned int height, bo frame.size.width = width; frame.size.height = height+20; - if (forced) { - [window setFrame:frame]; - } else { +// if (forced) { +// [window setFrame:frame]; +// } else { [window setFrame:frame display:YES animate:NO]; - } +// } } void puglImplSetTitle(PuglView* view, const char* title)