mirror of
https://github.com/swaywm/sway.git
synced 2026-03-30 11:10:59 -04:00
Merge pull request #1563 from nearffxx/0.15
Fix out of focus when using mouse to change workspace
This commit is contained in:
commit
fab88cd96a
1 changed files with 6 additions and 6 deletions
12
sway/focus.c
12
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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue