mirror of
https://github.com/glfw/glfw.git
synced 2025-06-07 16:24:57 +00:00
Merge 45d52f4473
into e7ea71be03
This commit is contained in:
commit
5b0a2e3d49
@ -1107,17 +1107,23 @@ static LRESULT CALLBACK windowProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM l
|
|||||||
else
|
else
|
||||||
AdjustWindowRectEx(&frame, style, FALSE, exStyle);
|
AdjustWindowRectEx(&frame, style, FALSE, exStyle);
|
||||||
|
|
||||||
if (window->minwidth != GLFW_DONT_CARE &&
|
if (window->minwidth != GLFW_DONT_CARE)
|
||||||
window->minheight != GLFW_DONT_CARE)
|
|
||||||
{
|
{
|
||||||
mmi->ptMinTrackSize.x = window->minwidth + frame.right - frame.left;
|
mmi->ptMinTrackSize.x = window->minwidth + frame.right - frame.left;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (window->minheight != GLFW_DONT_CARE)
|
||||||
|
{
|
||||||
mmi->ptMinTrackSize.y = window->minheight + frame.bottom - frame.top;
|
mmi->ptMinTrackSize.y = window->minheight + frame.bottom - frame.top;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (window->maxwidth != GLFW_DONT_CARE &&
|
if (window->maxwidth != GLFW_DONT_CARE)
|
||||||
window->maxheight != GLFW_DONT_CARE)
|
|
||||||
{
|
{
|
||||||
mmi->ptMaxTrackSize.x = window->maxwidth + frame.right - frame.left;
|
mmi->ptMaxTrackSize.x = window->maxwidth + frame.right - frame.left;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (window->maxheight != GLFW_DONT_CARE)
|
||||||
|
{
|
||||||
mmi->ptMaxTrackSize.y = window->maxheight + frame.bottom - frame.top;
|
mmi->ptMaxTrackSize.y = window->maxheight + frame.bottom - frame.top;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user