diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-09-10 21:00:39 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-10 21:00:39 -0400 |
commit | 822b45f4836c9a22af5a283e2aea6e4ecd514c22 (patch) | |
tree | 8cf1710d23edfe1da01da72338197b348288922d /sway/tree/view.c | |
parent | 024b9d85ea4cd51d803317c64e46dac659c9f7ec (diff) | |
parent | 097ed036477b775624593ac95fdaef12c36ff306 (diff) | |
download | sway-822b45f4836c9a22af5a283e2aea6e4ecd514c22.tar.xz |
Merge pull request #2617 from wmww/cursor-enter-on-focus-change
Give windows pointer focus immediately
Diffstat (limited to 'sway/tree/view.c')
-rw-r--r-- | sway/tree/view.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sway/tree/view.c b/sway/tree/view.c index 53215b40..65ac8b32 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" @@ -582,6 +583,8 @@ 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; } |