https://bugs.kde.org/show_bug.cgi?id=376155
jingyu9...@hotmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jingyu9...@hotmail.com --- Comment #10 from jingyu9...@hotmail.com --- Moving `setMaximize(false, false);` further up (to revert the problematic commit) seems to fix the issue on my kwin 5.9.4/openSUSE 42.2. ``` --- a/geometry.cpp 2017-03-21 21:54:36.000000000 +0800 +++ b/geometry.cpp 2017-03-23 19:11:02.872123167 +0800 @@ -3326,6 +3326,8 @@ TabSynchronizer syncer(this, TabGroup::QuickTile|TabGroup::Geometry|TabGroup::Maximized); + setMaximize(false, false); + if (mode != QuickTileNone) { m_quickTileMode = mode; // decorations may turn off some borders when tiled @@ -3336,8 +3338,6 @@ // Store the mode change m_quickTileMode = mode; - setMaximize(false, false); - emit quickTileModeChanged(); return; ``` -- You are receiving this mail because: You are watching all bug changes.