Browse Source

Fix typo

gh-pages
falkTX 10 years ago
parent
commit
053854daf0
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      dgl/src/pugl/pugl_win.cpp

+ 1
- 1
dgl/src/pugl/pugl_win.cpp View File

@@ -136,7 +136,7 @@ puglCreateWindow(PuglView* view, const char* title)
RECT mr = { 0, 0, view->min_width, view->min_height };
AdjustWindowRectEx(&mr, view->parent ? WS_CHILD : 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;
}
}



Loading…
Cancel
Save