diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2018-01-10 17:13:38 +0100 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2018-01-10 17:13:38 +0100 |
| commit | c09a1d7825e6165ee6de56ce694821d1eee89e8e (patch) | |
| tree | b1045959d4de1ce4f9aeafb3c34a7f3d960ea1e6 | |
| parent | 9e2d0bcc03831499beff6f4f7fb11570a55e3553 (diff) | |
Fix out of focus when using mouse to change workspace
by preventing focus to C_OUTPUT when WLC_BUTTON_STATE_RELEASED event occurs.
| -rw-r--r-- | sway/focus.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sway/focus.c b/sway/focus.c index e9b032f8..751de1f1 100644 --- a/sway/focus.c +++ b/sway/focus.c @@ -162,12 +162,12 @@ bool set_focused_container(swayc_t *c) { } if (c->type == C_VIEW) { wlc_view_set_state(c->handle, WLC_BIT_ACTIVATED, true); - } - if (!desktop_shell.is_locked) { - // If the system is locked, we do everything _but_ actually setting - // focus. This includes making our internals think that this view is - // focused. - wlc_view_focus(c->handle); + if (!desktop_shell.is_locked) { + // If the system is locked, we do everything _but_ actually setting + // focus. This includes making our internals think that this view is + // focused. + wlc_view_focus(c->handle); + } } if (c->parent->layout != L_TABBED && c->parent->layout != L_STACKED) { update_container_border(c); |
