wayland: track is-resizing state

This commit is contained in:
Daniel Eklöf 2021-01-10 15:40:11 +01:00
parent 77186d16e8
commit 4ebd58e388
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
2 changed files with 6 additions and 5 deletions

View file

@ -372,6 +372,7 @@ struct wl_window {
bool is_configured;
bool is_fullscreen;
bool is_maximized;
bool is_resizing;
bool is_tiled_top;
bool is_tiled_bottom;
bool is_tiled_left;
@ -383,6 +384,7 @@ struct wl_window {
uint8_t is_activated:1;
uint8_t is_fullscreen:1;
uint8_t is_maximized:1;
uint8_t is_resizing:1;
uint8_t is_tiled_top:1;
uint8_t is_tiled_bottom:1;
uint8_t is_tiled_left:1;