added a minimize button to the window

This commit is contained in:
myT 2017-06-14 07:44:37 +02:00
parent bec4101854
commit 860610466a

View file

@ -454,17 +454,16 @@ static qbool GLW_CreateWindow( int width, int height, int colorbits )
r.bottom = height; r.bottom = height;
int style = WS_VISIBLE | WS_CLIPCHILDREN; int style = WS_VISIBLE | WS_CLIPCHILDREN;
int exstyle; int exstyle = 0;
if ( glInfo.isFullscreen ) if ( glInfo.isFullscreen )
{ {
style |= WS_POPUP; style |= WS_POPUP;
exstyle = WS_EX_TOPMOST; exstyle |= WS_EX_TOPMOST;
} }
else else
{ {
style |= WS_OVERLAPPED | WS_BORDER | WS_CAPTION | WS_SYSMENU; style |= WS_OVERLAPPED | WS_BORDER | WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX;
exstyle = 0;
AdjustWindowRect( &r, style, FALSE ); AdjustWindowRect( &r, style, FALSE );
} }