Hide pop up windows in full screen.

Otherwise, they get in the way even though you can't see them.
This commit is contained in:
Unknown W. Brackets 2013-05-26 14:56:05 -07:00
parent 810cb967f9
commit ee86347610

View file

@ -1501,6 +1501,7 @@ namespace MainWindow
g_bFullScreen = FALSE;
CorrectCursor();
ResizeDisplay();
ShowOwnedPopups(hwndMain, TRUE);
}
void _ViewFullScreen(HWND hWnd)
@ -1528,6 +1529,7 @@ namespace MainWindow
g_bFullScreen = TRUE;
CorrectCursor();
ResizeDisplay();
ShowOwnedPopups(hwndMain, FALSE);
}
void SetPlaying(const char *text)