https://bugs.kde.org/show_bug.cgi?id=465937
--- Comment #53 from kolAflash <kolafl...@kolahilft.de> --- (In reply to Erwin Saumweber from comment #38) > [...] > 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. > [...] Updated the patch for kwin-6.3 (Debian-13): --- --- src/window.cpp.org 2025-04-02 05:36:38.000000000 +0200 +++ src/window.cpp 2025-05-26 16:09:37.061496189 +0200 @@ -1178,6 +1178,10 @@ m_interactiveMoveResize.initialQuickTileMode = requestedQuickTileMode(); m_interactiveMoveResize.initialGeometryRestore = geometryRestore(); + if (m_tile) { + setQuickTileMode(QuickTileFlag::None, m_interactiveMoveResize.anchor); + } + updateElectricGeometryRestore(); checkUnrestrictedInteractiveMoveResize(); Q_EMIT interactiveMoveResizeStarted(); ``` -- You are receiving this mail because: You are watching all bug changes.