mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-10-31 22:25:21 -04:00
layer-shell: fix type of margins
These currently use uint32_t while they are an int32_t in the protocol.
This commit is contained in:
parent
7360810f2e
commit
92d137c78a
2 changed files with 5 additions and 5 deletions
|
|
@ -58,7 +58,7 @@ struct wlr_layer_surface_v1_state {
|
|||
uint32_t anchor;
|
||||
int32_t exclusive_zone;
|
||||
struct {
|
||||
uint32_t top, right, bottom, left;
|
||||
int32_t top, right, bottom, left;
|
||||
} margin;
|
||||
enum zwlr_layer_surface_v1_keyboard_interactivity keyboard_interactive;
|
||||
uint32_t desired_width, desired_height;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue