mirror of
https://github.com/swaywm/sway.git
synced 2024-11-11 21:14:10 +01:00
ipc: add window::move events
This commit is contained in:
parent
4bf253855f
commit
e0e638281e
@ -218,6 +218,8 @@ void container_move_to(struct sway_container *container,
|
||||
seat_set_focus(seat, new_parent);
|
||||
workspace_output_raise_priority(container, old_parent, new_parent);
|
||||
ipc_event_workspace(NULL, container, "move");
|
||||
} else if (container->type == C_VIEW) {
|
||||
ipc_event_window(container, "move");
|
||||
}
|
||||
container_notify_subtree_changed(old_parent);
|
||||
container_notify_subtree_changed(new_parent);
|
||||
@ -578,6 +580,10 @@ void container_move(struct sway_container *container,
|
||||
container_notify_subtree_changed(old_parent);
|
||||
container_notify_subtree_changed(container->parent);
|
||||
|
||||
if (container->type == C_VIEW) {
|
||||
ipc_event_window(container, "move");
|
||||
}
|
||||
|
||||
if (old_parent) {
|
||||
seat_set_focus(config->handler_context.seat, old_parent);
|
||||
seat_set_focus(config->handler_context.seat, container);
|
||||
|
Loading…
Reference in New Issue
Block a user