mirror of
https://github.com/Trensa-Organization/hy3.git
synced 2025-03-15 18:53:40 +01:00
Fix window resizing not working on expanded nodes
This commit is contained in:
parent
14dec2e15c
commit
4bc6e306c6
1 changed files with 2 additions and 0 deletions
|
@ -359,6 +359,8 @@ void Hy3Layout::resizeActiveWindow(const Vector2D& delta, eRectCorner corner, CW
|
|||
|
||||
auto* node = this->getNodeFromWindow(window);
|
||||
if (node == nullptr) return;
|
||||
if (node->parent != nullptr && node->parent->data.as_group.focused_child == node)
|
||||
node = &node->getExpandActor();
|
||||
|
||||
bool drag_x;
|
||||
bool drag_y;
|
||||
|
|
Loading…
Add table
Reference in a new issue