Fix mouse focusing for horizontal/vertical views in tabbed containers
This commit is contained in:
parent
f85d3e15ba
commit
53516fa03f
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue