diff options
Diffstat (limited to 'pugl/pugl_win.cpp')
-rw-r--r-- | pugl/pugl_win.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pugl/pugl_win.cpp b/pugl/pugl_win.cpp index fd14593..2c092eb 100644 --- a/pugl/pugl_win.cpp +++ b/pugl/pugl_win.cpp @@ -138,7 +138,7 @@ puglCreateWindow(PuglView* view, const char* title) } int winFlags = WS_POPUPWINDOW | WS_CAPTION; - if (view->resizable) { + if (view->hints.resizable) { winFlags |= WS_SIZEBOX; if (view->min_width || view->min_height) { // Adjust the minimum window size to accomodate requested view size |