diff options
author | Tony Crisci <tony@dubstepdish.com> | 2017-10-30 08:44:39 -0400 |
---|---|---|
committer | Tony Crisci <tony@dubstepdish.com> | 2017-10-30 08:44:39 -0400 |
commit | 74bca7251b207aefd6103734bf068db10b0b43a5 (patch) | |
tree | ad09fe29a097b39cfc9d1e33706b4555239b2f73 /rootston | |
parent | fddef4d58e7d84f6fcfe0be02048ddf52ee01006 (diff) |
rename wlr_seat to seat on seat structs
Diffstat (limited to 'rootston')
-rw-r--r-- | rootston/cursor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rootston/cursor.c b/rootston/cursor.c index e8b8e89b..96844a1d 100644 --- a/rootston/cursor.c +++ b/rootston/cursor.c @@ -475,7 +475,7 @@ static void handle_request_set_cursor(struct wl_listener *listener, struct wlr_seat_pointer_request_set_cursor_event *event = data; struct wlr_surface *focused_surface = - event->seat_client->wlr_seat->pointer_state.focused_surface; + event->seat_client->seat->pointer_state.focused_surface; bool ok = focused_surface != NULL && focused_surface->resource != NULL; if (ok) { struct wl_client *focused_client = |