diff options
| -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 4ee47c5..0a68569 100644 --- a/pugl/pugl_win.cpp +++ b/pugl/pugl_win.cpp @@ -151,7 +151,7 @@ puglCreateWindow(PuglView* view, const char* title)  			RECT mr = { 0, 0, view->min_width, view->min_height };  			AdjustWindowRectEx(&mr, winFlags, FALSE, WS_EX_TOPMOST);  			view->min_width  = mr.right - mr.left; -			view->min_height = wr.bottom - mr.top; +			view->min_height = mr.bottom - mr.top;  		}  	} | 
