mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-04 04:06:06 -05:00
wayland: pending ‘configure’ flags: use ’bool’ in bit-fields
This commit is contained in:
parent
773b61eb79
commit
6876ab6bc2
1 changed files with 8 additions and 8 deletions
16
wayland.h
16
wayland.h
|
|
@ -381,14 +381,14 @@ struct wl_window {
|
|||
struct {
|
||||
int width;
|
||||
int height;
|
||||
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;
|
||||
uint8_t is_tiled_right:1;
|
||||
bool is_activated:1;
|
||||
bool is_fullscreen:1;
|
||||
bool is_maximized:1;
|
||||
bool is_resizing:1;
|
||||
bool is_tiled_top:1;
|
||||
bool is_tiled_bottom:1;
|
||||
bool is_tiled_left:1;
|
||||
bool is_tiled_right:1;
|
||||
} configure;
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue