diff options
author | Ian Fan <[email protected]> | 2018-07-18 10:47:44 +0100 |
---|---|---|
committer | Ian Fan <[email protected]> | 2018-08-01 16:57:15 +0100 |
commit | 4bf253855f1946ffca5a41085b8ae3eb79ca62c4 (patch) | |
tree | 4a05ba93c48d1952bf447da073681608eca9f286 /sway/tree/layout.c | |
parent | 07101a570750f47fa5d4fb81739a40168b6c8ea6 (diff) |
ipc: fix workspace::move calls argument order
Diffstat (limited to 'sway/tree/layout.c')
-rw-r--r-- | sway/tree/layout.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/tree/layout.c b/sway/tree/layout.c index a0764a54..b833e8e1 100644 --- a/sway/tree/layout.c +++ b/sway/tree/layout.c @@ -217,7 +217,7 @@ void container_move_to(struct sway_container *container, container_sort_workspaces(new_parent); seat_set_focus(seat, new_parent); workspace_output_raise_priority(container, old_parent, new_parent); - ipc_event_workspace(container, NULL, "move"); + ipc_event_workspace(NULL, container, "move"); } container_notify_subtree_changed(old_parent); container_notify_subtree_changed(new_parent); |