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 /include/rootston/seat.h | |
parent | a088000983521923922ebc7ebfe51a272da6a041 (diff) | |
parent | fc960e5d060c78015e0037616ac568cbd7d64b07 (diff) |
Merge pull request #1243 from emersion/layer-shell-suffix
layer-shell: add _v1 suffix
Diffstat (limited to 'include/rootston/seat.h')
-rw-r--r-- | include/rootston/seat.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/rootston/seat.h b/include/rootston/seat.h index 3ddb97c5..c5e584b6 100644 --- a/include/rootston/seat.h +++ b/include/rootston/seat.h @@ -17,7 +17,7 @@ struct roots_seat { double touch_x, touch_y; // If the focused layer is set, views cannot receive keyboard focus - struct wlr_layer_surface *focused_layer; + struct wlr_layer_surface_v1 *focused_layer; // If non-null, only this client can receive input events struct wl_client *exclusive_client; @@ -140,7 +140,7 @@ struct roots_view *roots_seat_get_focus(struct roots_seat *seat); void roots_seat_set_focus(struct roots_seat *seat, struct roots_view *view); void roots_seat_set_focus_layer(struct roots_seat *seat, - struct wlr_layer_surface *layer); + struct wlr_layer_surface_v1 *layer); void roots_seat_cycle_focus(struct roots_seat *seat); |