mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-22 05:09:13 +00:00
Merge pull request #242 from cwalther/window-size
Window shouldn't have a resizing border
This commit is contained in:
@ -2203,7 +2203,7 @@ void plClient::ResizeDisplayDevice(int Width, int Height, bool Windowed)
|
|||||||
if( Windowed )
|
if( Windowed )
|
||||||
{
|
{
|
||||||
// WS_VISIBLE appears necessary to avoid leaving behind framebuffer junk when going from windowed to a smaller window
|
// WS_VISIBLE appears necessary to avoid leaving behind framebuffer junk when going from windowed to a smaller window
|
||||||
winStyle = WS_OVERLAPPEDWINDOW | WS_VISIBLE;
|
winStyle = WS_OVERLAPPED | WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX | WS_VISIBLE;
|
||||||
winExStyle = WS_EX_APPWINDOW | WS_EX_WINDOWEDGE;
|
winExStyle = WS_EX_APPWINDOW | WS_EX_WINDOWEDGE;
|
||||||
} else {
|
} else {
|
||||||
winStyle = WS_POPUP;
|
winStyle = WS_POPUP;
|
||||||
|
Reference in New Issue
Block a user