wayland: Initialize floating size at window creation

This allows the windowed size to be restored for windows initially
created already in non-floating state.
main
Sebastian Krzyszkowiak 2021-08-02 13:47:32 +02:00 committed by Ethan Lee
parent dab33844e3
commit b5210cac44
1 changed files with 3 additions and 0 deletions

View File

@ -1132,6 +1132,9 @@ int Wayland_CreateWindow(_THIS, SDL_Window *window)
data->outputs = NULL;
data->num_outputs = 0;
data->floating_width = window->windowed.w;
data->floating_height = window->windowed.h;
data->surface =
wl_compositor_create_surface(c->compositor);
wl_surface_add_listener(data->surface, &surface_listener, data);