diff options
author | Aqa-Ib <[email protected]> | 2024-10-02 22:25:25 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2024-10-02 21:25:25 +0100 |
commit | de68e065fe861d7ca01eca267df4c305bc6e73c2 (patch) | |
tree | 6ec00637fbb39c18cf3508aaf8a6167b577dd1fa /src/layout | |
parent | e2426942e5716a742ea353d2a1de7d7760fbbb41 (diff) | |
download | Hyprland-de68e065fe861d7ca01eca267df4c305bc6e73c2.tar.gz Hyprland-de68e065fe861d7ca01eca267df4c305bc6e73c2.zip |
layout: fix dragging a window into a group after e242694 (#7976)
Diffstat (limited to 'src/layout')
-rw-r--r-- | src/layout/IHyprLayout.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/layout/IHyprLayout.cpp b/src/layout/IHyprLayout.cpp index 0fb78d02..4b5c9d4f 100644 --- a/src/layout/IHyprLayout.cpp +++ b/src/layout/IHyprLayout.cpp @@ -552,10 +552,10 @@ void IHyprLayout::changeWindowFloatingMode(PHLWINDOW pWindow) { pWindow->m_vLastFloatingSize = PSAVEDSIZE; - // move to narnia because we don't wanna find our own node. onWindowCreatedTiling should apply the coords back. + // move to narnia because we don't wanna find our own node. onWindowCreated should apply the coords back. pWindow->m_vPosition = Vector2D(-999999, -999999); - onWindowCreatedTiling(pWindow); + onWindowCreated(pWindow); pWindow->m_vRealPosition.setValue(PSAVEDPOS); pWindow->m_vRealSize.setValue(PSAVEDSIZE); |