mirror of
https://github.com/swaywm/sway.git
synced 2025-11-06 13:29:50 -05:00
Fix focus mode_toggle from a child of a floating container
Also fixes a crash when unfloating a window. It needs to add it back to the tiling tree as a sibling rather than a child, because the reference container might be a view.
This commit is contained in:
parent
c95847c9e1
commit
538e083f61
2 changed files with 11 additions and 2 deletions
|
|
@ -1033,7 +1033,7 @@ void container_set_floating(struct sway_container *container, bool enable) {
|
|||
struct sway_container *sibling =
|
||||
seat_get_focus_inactive_tiling(seat, workspace);
|
||||
container_remove_child(container);
|
||||
container_add_child(sibling, container);
|
||||
container_add_sibling(sibling, container);
|
||||
container->width = container->parent->width;
|
||||
container->height = container->parent->height;
|
||||
if (container->type == C_VIEW) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue