aboutsummaryrefslogtreecommitdiffstats
path: root/sway/tree/view.c
diff options
context:
space:
mode:
authorLibravatar William Wold <wm@wmww.sh>2018-09-09 22:47:58 -0700
committerLibravatar William Wold <wm@wmww.sh>2018-09-10 10:18:12 -0700
commite787a1581cc399ca7d953c9cd4d868499f5733a3 (patch)
tree3f14ab74cc6684867cdf41de76e0b833ad86783f /sway/tree/view.c
parentMerge pull request #2613 from apreiml/fix_no_last_focus_fail (diff)
downloadsway-e787a1581cc399ca7d953c9cd4d868499f5733a3.tar.gz
sway-e787a1581cc399ca7d953c9cd4d868499f5733a3.tar.zst
sway-e787a1581cc399ca7d953c9cd4d868499f5733a3.zip
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.
Diffstat (limited to 'sway/tree/view.c')
-rw-r--r--sway/tree/view.c2
1 files changed, 2 insertions, 0 deletions
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 @@
14#include "sway/criteria.h" 14#include "sway/criteria.h"
15#include "sway/commands.h" 15#include "sway/commands.h"
16#include "sway/desktop/transaction.h" 16#include "sway/desktop/transaction.h"
17#include "sway/input/cursor.h"
17#include "sway/ipc-server.h" 18#include "sway/ipc-server.h"
18#include "sway/output.h" 19#include "sway/output.h"
19#include "sway/input/seat.h" 20#include "sway/input/seat.h"
@@ -583,6 +584,7 @@ void view_unmap(struct sway_view *view) {
583 } 584 }
584 585
585 transaction_commit_dirty(); 586 transaction_commit_dirty();
587 cursor_send_pointer_motion(config->handler_context.seat->cursor, 0, true);
586 view->surface = NULL; 588 view->surface = NULL;
587} 589}
588 590