Reset exclusivity after shell layer

Also fixes an issue which was applying exclusivity to all edges
This commit is contained in:
Drew DeVault 2018-03-26 12:22:17 -04:00
parent df9dbf3170
commit ab6c2bf584
2 changed files with 43 additions and 23 deletions

View file

@ -4,6 +4,7 @@
#include <pixman.h>
#include <time.h>
#include <wayland-server.h>
#include <wlr/types/wlr_box.h>
#include <wlr/types/wlr_output_damage.h>
struct roots_desktop;
@ -19,6 +20,8 @@ struct roots_output {
struct timespec last_frame;
struct wlr_output_damage *damage;
struct wlr_box usable_area;
struct wl_listener destroy;
struct wl_listener damage_frame;
struct wl_listener damage_destroy;