Merge pull request #5894 from vnen/windows-set-position

Avoid changing position when the window is fullscreen
This commit is contained in:
Rémi Verschelde 2016-07-24 17:55:25 +02:00 committed by GitHub
commit dc3c32b488
1 changed files with 1 additions and 0 deletions

View File

@ -1476,6 +1476,7 @@ Point2 OS_Windows::get_window_position() const{
}
void OS_Windows::set_window_position(const Point2& p_position){
if (video_mode.fullscreen) return;
RECT r;
GetWindowRect(hWnd,&r);
MoveWindow(hWnd,p_position.x,p_position.y,r.right-r.left,r.bottom-r.top,TRUE);