From 192ec437df339767f09363d3f6638b5872062e0b Mon Sep 17 00:00:00 2001 From: Ser Freeman Date: Mon, 26 Feb 2024 11:15:15 +0500 Subject: [PATCH] Window: Don't reset quick tile mode on interactive move start Quick tile mode reset should be done in the interactive move handler, where the new move offset is set. Only reset it on resize to unsnap the window from the tile. BUG: 472366 --- src/window.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/window.cpp b/src/window.cpp index fdf490d54d..a886b18d33 100644 --- a/src/window.cpp +++ b/src/window.cpp @@ -1246,7 +1246,7 @@ bool Window::startInteractiveMoveResize() } } - if (m_tile && !m_tile->supportsResizeGravity(interactiveMoveResizeGravity())) { + if (isInteractiveResize() && m_tile && !m_tile->supportsResizeGravity(interactiveMoveResizeGravity())) { setQuickTileMode(QuickTileFlag::None); }