From e787a1581cc399ca7d953c9cd4d868499f5733a3 Mon Sep 17 00:00:00 2001 From: William Wold Date: Sun, 9 Sep 2018 22:47:58 -0700 Subject: Give windows pointer focus immediately when they are switched to Fixes #2401 (aka #2558) Previously, when switching windows, pointer focus was not changed until the pointer was moved. This makes the pointer enter happen immediately, without the side effects of other attempted fixes. --- sway/tree/view.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'sway/tree/view.c') diff --git a/sway/tree/view.c b/sway/tree/view.c index 53215b40..10c48e2e 100644 --- a/sway/tree/view.c +++ b/sway/tree/view.c @@ -14,6 +14,7 @@ #include "sway/criteria.h" #include "sway/commands.h" #include "sway/desktop/transaction.h" +#include "sway/input/cursor.h" #include "sway/ipc-server.h" #include "sway/output.h" #include "sway/input/seat.h" @@ -583,6 +584,7 @@ void view_unmap(struct sway_view *view) { } transaction_commit_dirty(); + cursor_send_pointer_motion(config->handler_context.seat->cursor, 0, true); view->surface = NULL; } -- cgit v1.2.3 From 22c5dd8a028252039a4fc9243b1f747ab8541cf8 Mon Sep 17 00:00:00 2001 From: William Wold Date: Mon, 10 Sep 2018 10:03:53 -0700 Subject: Minor fix --- sway/tree/view.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sway/tree/view.c') diff --git a/sway/tree/view.c b/sway/tree/view.c index 10c48e2e..981d82c9 100644 --- a/sway/tree/view.c +++ b/sway/tree/view.c @@ -584,8 +584,8 @@ void view_unmap(struct sway_view *view) { } transaction_commit_dirty(); - cursor_send_pointer_motion(config->handler_context.seat->cursor, 0, true); view->surface = NULL; + cursor_send_pointer_motion(config->handler_context.seat->cursor, 0, true); } void view_update_size(struct sway_view *view, int width, int height) { -- cgit v1.2.3 From 097ed036477b775624593ac95fdaef12c36ff306 Mon Sep 17 00:00:00 2001 From: William Wold Date: Mon, 10 Sep 2018 17:52:42 -0700 Subject: Minor fix --- sway/tree/view.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'sway/tree/view.c') diff --git a/sway/tree/view.c b/sway/tree/view.c index 981d82c9..65ac8b32 100644 --- a/sway/tree/view.c +++ b/sway/tree/view.c @@ -583,9 +583,10 @@ void view_unmap(struct sway_view *view) { workspace_detect_urgent(ws); } + cursor_send_pointer_motion(config->handler_context.seat->cursor, 0, true); + transaction_commit_dirty(); view->surface = NULL; - cursor_send_pointer_motion(config->handler_context.seat->cursor, 0, true); } void view_update_size(struct sway_view *view, int width, int height) { -- cgit v1.2.3