diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-09-14 20:47:42 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-14 20:47:42 -0400 |
commit | 0210905eef94216c42a070b638c6f3e6d81512e2 (patch) | |
tree | 7968f4bdac9734df92c1be0c8e8f5da84b03e766 /rootston/seat.c | |
parent | a088000983521923922ebc7ebfe51a272da6a041 (diff) | |
parent | fc960e5d060c78015e0037616ac568cbd7d64b07 (diff) |
Merge pull request #1243 from emersion/layer-shell-suffix
layer-shell: add _v1 suffix
Diffstat (limited to 'rootston/seat.c')
-rw-r--r-- | rootston/seat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rootston/seat.c b/rootston/seat.c index 1ae098bc..507254d4 100644 --- a/rootston/seat.c +++ b/rootston/seat.c @@ -8,7 +8,7 @@ #include <wlr/backend/libinput.h> #include <wlr/config.h> #include <wlr/types/wlr_idle.h> -#include <wlr/types/wlr_layer_shell.h> +#include <wlr/types/wlr_layer_shell_v1.h> #include <wlr/types/wlr_tablet_v2.h> #include <wlr/types/wlr_xcursor_manager.h> #include <wlr/util/log.h> @@ -1194,7 +1194,7 @@ void roots_seat_set_focus(struct roots_seat *seat, struct roots_view *view) { * You also cannot alt-tab between layer surfaces and shell surfaces. */ void roots_seat_set_focus_layer(struct roots_seat *seat, - struct wlr_layer_surface *layer) { + struct wlr_layer_surface_v1 *layer) { if (!layer) { seat->focused_layer = NULL; return; |