wayland: track window maximized state

This commit is contained in:
Daniel Eklöf 2020-02-26 13:23:00 +01:00
parent 6eece79218
commit 5fbbd2f80e
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
2 changed files with 7 additions and 2 deletions

View file

@ -112,9 +112,11 @@ struct wl_window {
bool is_configured;
bool is_fullscreen;
bool is_maximized;
struct {
bool is_activated;
bool is_fullscreen;
bool is_maximized;
int width;
int height;
} configure;