sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit a1a99421a1150609bc8a54a2dd51dc9ec780d326
parent 4ef5b49906700e25383a32cde0b16f1df2de250a
Author: Drew DeVault <sir@cmpwn.com>
Date:   Sun,  3 Feb 2019 20:15:21 +0100

Merge pull request #3562 from vilhalmer/focus_follows_mouse-workspace-last-inactive

Focus workspace inactive node with focus_follows_mouse
Diffstat:
Msway/input/cursor.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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: