diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-04-02 17:00:09 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2018-04-02 18:44:06 -0400 |
commit | 37036df822fb339d790be24abbaa09253f889d25 (patch) | |
tree | bdeb709cff9c02f3873a4d4daf75b3acae81c88b /include | |
parent | a94f4d0edcdb54ac59b399df36273555f29ffc7d (diff) |
Handle layer surfaces below shell surfaces
Diffstat (limited to 'include')
-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 0d8e1749..6f482723 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 roots_layer_surface *focused_layer; + struct wlr_layer_surface *focused_layer; struct wl_list views; // roots_seat_view::link bool has_focus; @@ -105,7 +105,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 roots_layer_surface *layer); + struct wlr_layer_surface *layer); void roots_seat_cycle_focus(struct roots_seat *seat); |