commit 0b18560952c8615b945ab62ee365b95fede647cc
parent fde900861af742f4078ace5720ddd5b02eeb0bac
Author: Rouven Czerwinski <rouven@czerwinskis.de>
Date: Mon, 7 Jan 2019 13:21:02 +0100
view: use seat_consider_warp_to_focus in view_unmap
The view_unmap function contained an open coded version of
seat_consider_warp_to_focus, replace it with a call to the function.
Diffstat:
1 file changed, 1 insertion(+), 8 deletions(-)
diff --git a/sway/tree/view.c b/sway/tree/view.c
@@ -654,14 +654,7 @@ void view_unmap(struct sway_view *view) {
struct sway_seat *seat;
wl_list_for_each(seat, &server.input->seats, link) {
- if (config->mouse_warping == WARP_CONTAINER) {
- struct sway_node *node = seat_get_focus(seat);
- if (node && node->type == N_CONTAINER) {
- cursor_warp_to_container(seat->cursor, node->sway_container);
- } else if (node && node->type == N_WORKSPACE) {
- cursor_warp_to_workspace(seat->cursor, node->sway_workspace);
- }
- }
+ seat_consider_warp_to_focus(seat);
}
transaction_commit_dirty();