DPF

DISTRHO Plugin Framework
Log | Files | Refs | Submodules | README | LICENSE

commit e1c4bbe0a88f5f103665447f1ea062a20eec9f63
parent 21499c21edc369a8bc811085775b8dd14b516fec
Author: falkTX <falktx@gmail.com>
Date:   Mon, 27 Jan 2014 12:38:59 -0800

A previous osx fix attempt was wrong, correct it

Diffstat:
Mdgl/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 @@ -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)