aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvilhalmer <vil@vil.lv>2019-02-03 12:12:40 -0500
committerDrew DeVault <sir@cmpwn.com>2019-02-11 10:13:21 -0500
commit130626a5db87c43a38b300700d013313f99ef4c6 (patch)
tree2fa068fde3e0fe427742543b870dff700e411f6e
parent743d34538333e4111a71fad32668335dff9a4822 (diff)
downloadsway-130626a5db87c43a38b300700d013313f99ef4c6.zip
sway-130626a5db87c43a38b300700d013313f99ef4c6.tar.gz
sway-130626a5db87c43a38b300700d013313f99ef4c6.tar.bz2
Focus ws inactive node with focus_follows_mouse
-rw-r--r--sway/input/cursor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/input/cursor.c b/sway/input/cursor.c
index 01aae79..1bf548d 100644
--- a/sway/input/cursor.c
+++ b/sway/input/cursor.c
@@ -362,7 +362,7 @@ void cursor_send_pointer_motion(struct sway_cursor *cursor, uint32_t time_msec,
struct sway_output *focused_output = node_get_output(focus);
struct sway_output *output = node_get_output(node);
if (output != focused_output) {
- seat_set_focus(seat, node);
+ seat_set_focus(seat, seat_get_focus_inactive(seat, node));
}
} else if (node->type == N_CONTAINER && node->sway_container->view) {
// Focus node if the following are true: