Fix mouse focusing for horizontal/vertical views in tabbed containers

This commit is contained in:
Ivan Chebykin 2018-05-25 17:22:25 +03:00
parent f85d3e15ba
commit 53516fa03f
No known key found for this signature in database
GPG Key ID: 34A8A768BB01746F
1 changed files with 2 additions and 1 deletions

View File

@ -170,7 +170,8 @@ void cursor_send_pointer_motion(struct sway_cursor *cursor, uint32_t time_msec,
struct sway_container *p = c->parent;
struct sway_container *first_tabbed_parent = c->parent;
while (p) {
if (p->layout == L_TABBED || p->layout == L_STACKED) {
if ((p->layout == L_TABBED || p->layout == L_STACKED)
&& !view_is_visible(c->sway_view)) {
do_mouse_focus = false;
first_tabbed_parent = p;
}