https://bugs.kde.org/show_bug.cgi?id=455287
--- Comment #2 from Stefan <menis...@gmx.net> --- (In reply to David Redondo from comment #1) > In KWIN: > void VirtualDesktopManager::setRows(uint rows) > { > if (rows == 0 || rows > count() || rows == m_rows) { > return; > } And a little bit later `updateLayout()` https://invent.kde.org/plasma/kwin/-/blob/master/src/virtualdesktops.cpp#L649 void VirtualDesktopManager::updateLayout() { m_rows = qMin(m_rows, count()); // count() = 1 = wins qMin = m_rows is now back to "1" -- You are receiving this mail because: You are watching all bug changes.