mirror of
https://github.com/swaywm/sway.git
synced 2024-11-11 21:14:10 +01:00
Fix boolean
This commit is contained in:
parent
f156a25e64
commit
4cb6c368a7
@ -935,7 +935,7 @@ void container_set_floating(struct sway_container *container, bool enable) {
|
|||||||
container_add_child(workspace->sway_workspace->floating, container);
|
container_add_child(workspace->sway_workspace->floating, container);
|
||||||
if (container->type == C_VIEW) {
|
if (container->type == C_VIEW) {
|
||||||
view_init_floating(container->sway_view);
|
view_init_floating(container->sway_view);
|
||||||
view_set_tiled(container->sway_view, true);
|
view_set_tiled(container->sway_view, false);
|
||||||
}
|
}
|
||||||
seat_set_focus(seat, seat_get_focus_inactive(seat, container));
|
seat_set_focus(seat, seat_get_focus_inactive(seat, container));
|
||||||
container_reap_empty_recursive(workspace);
|
container_reap_empty_recursive(workspace);
|
||||||
|
Loading…
Reference in New Issue
Block a user