From 4c471218c9fd8be87f0df968004e527b4f42d948 Mon Sep 17 00:00:00 2001 From: Blackilykat Date: Sat, 15 Mar 2025 19:15:09 +0100 Subject: [PATCH] renderer: fix window offset for dragged windows (#9629) --- src/desktop/Window.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/desktop/Window.cpp b/src/desktop/Window.cpp index 7f6ae45d6..2cd8b4381 100644 --- a/src/desktop/Window.cpp +++ b/src/desktop/Window.cpp @@ -1258,7 +1258,7 @@ void CWindow::setAnimationsToMove() { void CWindow::onWorkspaceAnimUpdate() { // clip box for animated offsets - if (!m_bIsFloating || m_bPinned || isFullscreen()) { + if (!m_bIsFloating || m_bPinned || isFullscreen() || m_bDraggingTiled) { m_vFloatingOffset = Vector2D(0, 0); return; }