mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-19 05:33:44 -04:00
wayland: track is-resizing state
This commit is contained in:
parent
77186d16e8
commit
4ebd58e388
2 changed files with 6 additions and 5 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue