diff options
author | dranull <[email protected]> | 2023-12-28 22:54:41 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2023-12-28 23:54:41 +0100 |
commit | 8321d6be46ed2df7dfe7ec142716a7d1a50d2d5e (patch) | |
tree | 8381a98e72b0ae839847da7ac7a122027317b6bf /src/layout/MasterLayout.cpp | |
parent | cedf5f1fca057351d85560ff72bf2cc6cc609755 (diff) | |
download | Hyprland-8321d6be46ed2df7dfe7ec142716a7d1a50d2d5e.tar.gz Hyprland-8321d6be46ed2df7dfe7ec142716a7d1a50d2d5e.zip |
internal: Unify input handling on decorations (#4280)
* Unify input handling on decorations
* Make input methods private
* Optional data
Diffstat (limited to 'src/layout/MasterLayout.cpp')
-rw-r--r-- | src/layout/MasterLayout.cpp | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/src/layout/MasterLayout.cpp b/src/layout/MasterLayout.cpp index def03236..65f85691 100644 --- a/src/layout/MasterLayout.cpp +++ b/src/layout/MasterLayout.cpp @@ -102,16 +102,8 @@ void CHyprMasterLayout::onWindowCreatedTiling(CWindow* pWindow, eDirection direc const auto MOUSECOORDS = g_pInputManager->getMouseCoordsInternal(); if (g_pInputManager->m_bWasDraggingWindow && OPENINGON) { - for (auto& wd : OPENINGON->pWindow->m_dWindowDecorations) { - if (!(wd->getDecorationFlags() & DECORATION_ALLOWS_MOUSE_INPUT)) - continue; - - if (g_pDecorationPositioner->getWindowDecorationBox(wd.get()).containsPoint(MOUSECOORDS)) { - if (!wd->onEndWindowDragOnDeco(pWindow, MOUSECOORDS)) - return; - break; - } - } + if (OPENINGON->pWindow->checkInputOnDecos(INPUT_TYPE_DRAG_END, MOUSECOORDS, pWindow)) + return; } // if it's a group, add the window |