mirror of
https://github.com/swaywm/sway.git
synced 2025-01-02 18:37:55 +01:00
Remove bad assertion in workspace_rejigger
The assertion can be (rightfully) triggered by creating layout V[H[view view] view] and moving the top right view to the right. After removing the assertion I found the container being moved needs its size reset to prevent it from being sized wrongly after arranging.
This commit is contained in:
parent
dbaafdfac9
commit
2f6935e00f
1 changed files with 1 additions and 3 deletions
|
@ -259,9 +259,6 @@ static void container_move_to_container(struct sway_container *container,
|
||||||
* In other words, rejigger it. */
|
* In other words, rejigger it. */
|
||||||
static void workspace_rejigger(struct sway_workspace *ws,
|
static void workspace_rejigger(struct sway_workspace *ws,
|
||||||
struct sway_container *child, enum movement_direction move_dir) {
|
struct sway_container *child, enum movement_direction move_dir) {
|
||||||
if (!sway_assert(child->parent == NULL, "Expected a root child")) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
container_detach(child);
|
container_detach(child);
|
||||||
workspace_wrap_children(ws);
|
workspace_wrap_children(ws);
|
||||||
|
|
||||||
|
@ -270,6 +267,7 @@ static void workspace_rejigger(struct sway_workspace *ws,
|
||||||
ws->layout =
|
ws->layout =
|
||||||
move_dir == MOVE_LEFT || move_dir == MOVE_RIGHT ? L_HORIZ : L_VERT;
|
move_dir == MOVE_LEFT || move_dir == MOVE_RIGHT ? L_HORIZ : L_VERT;
|
||||||
workspace_update_representation(ws);
|
workspace_update_representation(ws);
|
||||||
|
child->width = child->height = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void move_out_of_tabs_stacks(struct sway_container *container,
|
static void move_out_of_tabs_stacks(struct sway_container *container,
|
||||||
|
|
Loading…
Reference in a new issue