diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-10-22 14:53:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-22 14:53:48 +0200 |
commit | ef532154c342ebddc6bc85086521790e265803bc (patch) | |
tree | 4619bd68b7708892244acdb86038b69393b20aa0 /sway/commands | |
parent | db2b54555096c38c5634372d70cf733b5b60a35d (diff) | |
parent | f04b8f0061c410ea5d0a85910fd9478082112088 (diff) |
Merge pull request #2923 from RyanDwyer/fix-move-to-fullscreen-crash
Fix crash when moving a container to a fullscreen workspace
Diffstat (limited to 'sway/commands')
-rw-r--r-- | sway/commands/move.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/commands/move.c b/sway/commands/move.c index a5b7f661..e0a958bf 100644 --- a/sway/commands/move.c +++ b/sway/commands/move.c @@ -108,7 +108,7 @@ static void workspace_focus_fullscreen(struct sway_workspace *workspace) { if (focus_ws == workspace) { struct sway_node *new_focus = seat_get_focus_inactive(seat, &workspace->fullscreen->node); - seat_set_focus(seat, new_focus); + seat_set_raw_focus(seat, new_focus); } } } |