mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-15 08:34:40 +00:00
Fixed spacing
This commit is contained in:
parent
c2da67d473
commit
2864edf291
2 changed files with 3 additions and 3 deletions
|
|
@ -133,7 +133,7 @@ public:
|
||||||
/// This method removes the curtain window.
|
/// This method removes the curtain window.
|
||||||
virtual void raiseCurtain()=0;
|
virtual void raiseCurtain()=0;
|
||||||
|
|
||||||
/// This method indicates to created windows to show as normal.
|
/// This method indicates to created windows to show as normal.
|
||||||
virtual void setDisplayWindow(bool set)=0;
|
virtual void setDisplayWindow(bool set)=0;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
|
||||||
|
|
@ -155,7 +155,7 @@ void Win32Window::setVideoMode( const GFXVideoMode &mode )
|
||||||
SetWindowPos( getHWND(), HWND_NOTOPMOST, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE | SWP_FRAMECHANGED);
|
SetWindowPos( getHWND(), HWND_NOTOPMOST, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE | SWP_FRAMECHANGED);
|
||||||
|
|
||||||
if(mDisplayWindow)
|
if(mDisplayWindow)
|
||||||
ShowWindow(getHWND(), SW_SHOWNORMAL);
|
ShowWindow(getHWND(), SW_SHOWNORMAL);
|
||||||
|
|
||||||
// Clear the menu bar from the window for full screen
|
// Clear the menu bar from the window for full screen
|
||||||
HMENU menu = GetMenu(getHWND());
|
HMENU menu = GetMenu(getHWND());
|
||||||
|
|
@ -220,7 +220,7 @@ void Win32Window::setVideoMode( const GFXVideoMode &mode )
|
||||||
SetWindowPos( getHWND(), HWND_NOTOPMOST, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE | SWP_FRAMECHANGED);
|
SetWindowPos( getHWND(), HWND_NOTOPMOST, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE | SWP_FRAMECHANGED);
|
||||||
|
|
||||||
if(mDisplayWindow)
|
if(mDisplayWindow)
|
||||||
ShowWindow( getHWND(), SW_SHOWNORMAL);
|
ShowWindow( getHWND(), SW_SHOWNORMAL);
|
||||||
}
|
}
|
||||||
|
|
||||||
mFullscreen = false;
|
mFullscreen = false;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue