mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-09 15:45:57 +01:00
fixed missing recursion of force in dwindle
This commit is contained in:
parent
f36cd350cc
commit
e13f2480ff
1 changed files with 2 additions and 2 deletions
|
@ -44,8 +44,8 @@ void SDwindleNodeData::recalcSizePosRecursive(bool force) {
|
|||
children[1]->size = Vector2D(size.x, size.y / 2.f * REVERSESPLITRATIO);
|
||||
}
|
||||
|
||||
children[0]->recalcSizePosRecursive();
|
||||
children[1]->recalcSizePosRecursive();
|
||||
children[0]->recalcSizePosRecursive(force);
|
||||
children[1]->recalcSizePosRecursive(force);
|
||||
} else {
|
||||
layout->applyNodeDataToWindow(this, force);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue