From 7699c5444c32289a22ce2c57d1daadabed87e7ac Mon Sep 17 00:00:00 2001 From: emersion Date: Fri, 14 Sep 2018 19:21:44 +0200 Subject: Update for swaywm/wlroots#1243 --- sway/input/cursor.c | 4 ++-- sway/input/seat.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'sway/input') diff --git a/sway/input/cursor.c b/sway/input/cursor.c index dc66d82d..85951c09 100644 --- a/sway/input/cursor.c +++ b/sway/input/cursor.c @@ -807,8 +807,8 @@ void dispatch_cursor_button(struct sway_cursor *cursor, // Handle clicking a layer surface if (surface && wlr_surface_is_layer_surface(surface)) { - struct wlr_layer_surface *layer = - wlr_layer_surface_from_wlr_surface(surface); + struct wlr_layer_surface_v1 *layer = + wlr_layer_surface_v1_from_wlr_surface(surface); if (layer->current.keyboard_interactive) { seat_set_focus_layer(seat, layer); } diff --git a/sway/input/seat.c b/sway/input/seat.c index 8704f90f..ab5047b2 100644 --- a/sway/input/seat.c +++ b/sway/input/seat.c @@ -769,7 +769,7 @@ void seat_set_focus_surface(struct sway_seat *seat, } void seat_set_focus_layer(struct sway_seat *seat, - struct wlr_layer_surface *layer) { + struct wlr_layer_surface_v1 *layer) { if (!layer && seat->focused_layer) { seat->focused_layer = NULL; struct sway_node *previous = seat_get_focus_inactive(seat, &root->node); -- cgit v1.2.3