Compare commits
4 Commits
dkondor-up
...
master
Author | SHA1 | Date |
---|---|---|
Simon Ser | 93e050c602 | |
Simon Ser | 562b24b9fc | |
Isaac Freund | 92d137c78a | |
Simon Ser | 7360810f2e |
|
@ -1,7 +0,0 @@
|
|||
#ifndef WLR_TYPES_WLR_BOX_H
|
||||
#define WLR_TYPES_WLR_BOX_H
|
||||
|
||||
#warning "wlr_box has been moved to wlr/util/box.h"
|
||||
#include <wlr/util/box.h>
|
||||
|
||||
#endif
|
|
@ -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;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
project(
|
||||
'wlroots',
|
||||
'c',
|
||||
version: '0.15.0',
|
||||
version: '0.16.0',
|
||||
license: 'MIT',
|
||||
meson_version: '>=0.58.1',
|
||||
default_options: [
|
||||
|
@ -15,7 +15,7 @@ project(
|
|||
# necessary for bugfix releases. Increasing soversion is required because
|
||||
# wlroots never guarantees ABI stability -- only API stability is guaranteed
|
||||
# between minor releases.
|
||||
soversion = 10
|
||||
soversion = 11
|
||||
|
||||
little_endian = host_machine.endian() == 'little'
|
||||
big_endian = host_machine.endian() == 'big'
|
||||
|
|
|
@ -168,10 +168,10 @@ static void layer_surface_handle_set_margin(
|
|||
return;
|
||||
}
|
||||
|
||||
if (surface->current.margin.top == (uint32_t) top
|
||||
&& surface->current.margin.right == (uint32_t) right
|
||||
&& surface->current.margin.bottom == (uint32_t) bottom
|
||||
&& surface->current.margin.left == (uint32_t) left) {
|
||||
if (surface->current.margin.top == top
|
||||
&& surface->current.margin.right == right
|
||||
&& surface->current.margin.bottom == bottom
|
||||
&& surface->current.margin.left == left) {
|
||||
surface->pending.committed &= ~WLR_LAYER_SURFACE_V1_STATE_MARGIN;
|
||||
} else {
|
||||
surface->pending.committed |= WLR_LAYER_SURFACE_V1_STATE_MARGIN;
|
||||
|
|
Loading…
Reference in New Issue