https://bugs.kde.org/show_bug.cgi?id=465937

--- Comment #38 from Nebelbank <nebelb...@posteo.de> ---
I also wanted this functionality back so badly that I found a solution that
"works for me" and that I'd like to share.

As a hack, you can recompile kwin with the following patch applied.
Then any move/resize takes the window out of the tiled state and the original
50/50 split never gets modified.
But you have to live with a brief flicker on resizing a tiled window, and
recompiling kwin on every new release.

---

diff --git a/src/window.cpp b/src/window.cpp
index 8d93a514b0..0fa8922cb8 100644
--- a/src/window.cpp
+++ b/src/window.cpp
@@ -1650,7 +1650,7 @@ bool Window::startInteractiveMoveResize()
         }
     }

-    if (m_tile &&
!m_tile->supportsResizeGravity(interactiveMoveResizeGravity())) {
+    if (m_tile) {
         setQuickTileMode(QuickTileFlag::None);
     }

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to