mirror of
https://github.com/hyprwm/Hyprland
synced 2024-12-22 23:09:51 +01:00
input: release mouse buttons before refocuses
This commit is contained in:
parent
6225591dbd
commit
f914a5a06d
1 changed files with 3 additions and 0 deletions
|
@ -796,6 +796,8 @@ void CCompositor::focusWindow(CWindow* pWindow, wlr_surface* pSurface) {
|
|||
}
|
||||
|
||||
if (!pWindow || !windowValidMapped(pWindow)) {
|
||||
g_pInputManager->releaseAllMouseButtons();
|
||||
|
||||
const auto PLASTWINDOW = m_pLastWindow;
|
||||
m_pLastWindow = nullptr;
|
||||
|
||||
|
@ -868,6 +870,7 @@ void CCompositor::focusWindow(CWindow* pWindow, wlr_surface* pSurface) {
|
|||
|
||||
// do pointer focus too
|
||||
const auto POINTERLOCAL = g_pInputManager->getMouseCoordsInternal() - pWindow->m_vRealPosition.goalv();
|
||||
g_pInputManager->releaseAllMouseButtons();
|
||||
wlr_seat_pointer_notify_enter(m_sSeat.seat, PWINDOWSURFACE, POINTERLOCAL.x, POINTERLOCAL.y);
|
||||
|
||||
updateWindowAnimatedDecorationValues(pWindow);
|
||||
|
|
Loading…
Reference in a new issue