diff options
author | S. Christoffer Eliesen <christoffer@eliesen.no> | 2015-10-23 14:32:17 +0200 |
---|---|---|
committer | S. Christoffer Eliesen <christoffer@eliesen.no> | 2015-10-23 16:35:48 +0200 |
commit | c1479701dea79aebd2b5fdd83a9b28435f6647fe (patch) | |
tree | 857071bb0f3fe2795eacac82071123bfda1a750b /sway/focus.c | |
parent | 1f08106b0a006d00e7d74701e4196c1f99e4ac36 (diff) |
seamless_mouse: Move pointer only if successfully changed workspace.
If e.g. a window has a popup open then that will lock the current focus,
making a workspace switch denied.
So don't move the mouse pointer in such cases.
Diffstat (limited to 'sway/focus.c')
-rw-r--r-- | sway/focus.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/sway/focus.c b/sway/focus.c index 45108a11..0c1f8c9e 100644 --- a/sway/focus.c +++ b/sway/focus.c @@ -53,11 +53,10 @@ bool move_focus(enum movement_direction direction) { view = get_swayc_in_direction(view, direction); if (view) { if (direction == MOVE_PARENT) { - set_focused_container(view); + return set_focused_container(view); } else { - set_focused_container(get_focused_view(view)); + return set_focused_container(get_focused_view(view)); } - return true; } return false; } @@ -73,9 +72,9 @@ swayc_t *get_focused_container(swayc_t *parent) { return parent; } -void set_focused_container(swayc_t *c) { +bool set_focused_container(swayc_t *c) { if (locked_container_focus || !c) { - return; + return false; } sway_log(L_DEBUG, "Setting focus to %p:%ld", c, c->handle); @@ -84,7 +83,7 @@ void set_focused_container(swayc_t *c) { swayc_t *focused = get_focused_view(workspace); // if the workspace we are changing focus to has a fullscreen view return if (swayc_is_fullscreen(focused) && focused != c) { - return; + return false; } // update container focus from here to root, making necessary changes along @@ -115,17 +114,18 @@ void set_focused_container(swayc_t *c) { } } } + return true; } -void set_focused_container_for(swayc_t *a, swayc_t *c) { +bool set_focused_container_for(swayc_t *a, swayc_t *c) { if (locked_container_focus || !c) { - return; + return false; } swayc_t *find = c; // Ensure that a is an ancestor of c while (find != a && (find = find->parent)) { if (find == &root_container) { - return; + return false; } } @@ -134,7 +134,7 @@ void set_focused_container_for(swayc_t *a, swayc_t *c) { swayc_t *focused = get_focused_view(workspace); // if the workspace we are changing focus to has a fullscreen view return if (swayc_is_fullscreen(focused) && c != focused) { - return; + return false; } // Check if we changing a parent container that will see chnage @@ -147,8 +147,7 @@ void set_focused_container_for(swayc_t *a, swayc_t *c) { } if (effective) { // Go to set_focused_container - set_focused_container(c); - return; + return set_focused_container(c); } sway_log(L_DEBUG, "Setting focus for %p:%ld to %p:%ld", @@ -161,6 +160,7 @@ void set_focused_container_for(swayc_t *a, swayc_t *c) { p = p->parent; p->is_focused = false; } + return true; } swayc_t *get_focused_view(swayc_t *parent) { |