wayland: Fix comment

main
Frank Praznik 2024-04-14 15:02:31 -04:00
parent ad813a65e7
commit f4611ffe9a
No known key found for this signature in database
1 changed files with 4 additions and 5 deletions

View File

@ -603,11 +603,10 @@ static void UpdateWindowFullscreen(SDL_Window *window, SDL_bool fullscreen)
SDL_SendWindowEvent(window, SDL_EVENT_WINDOW_ENTER_FULLSCREEN, 0, 0); SDL_SendWindowEvent(window, SDL_EVENT_WINDOW_ENTER_FULLSCREEN, 0, 0);
SDL_UpdateFullscreenMode(window, SDL_TRUE, SDL_FALSE); SDL_UpdateFullscreenMode(window, SDL_TRUE, SDL_FALSE);
/* Unconditionally set the output for exclusive fullscreen windows when entering /* Set the output for exclusive fullscreen windows when entering fullscreen from a
* fullscreen from a compositor event, as where the compositor will actually * compositor event, or if the fullscreen paramaters were changed between the initial
* place the fullscreen window is unknown. * fullscreen request and now, to ensure that the window is on the correct output,
* * as requested by the client.
* If the higher level
*/ */
if (window->fullscreen_exclusive && (!wind->fullscreen_exclusive || !wind->fullscreen_was_positioned)) { if (window->fullscreen_exclusive && (!wind->fullscreen_exclusive || !wind->fullscreen_was_positioned)) {
SDL_VideoDisplay *disp = SDL_GetVideoDisplay(window->current_fullscreen_mode.displayID); SDL_VideoDisplay *disp = SDL_GetVideoDisplay(window->current_fullscreen_mode.displayID);