https://bugs.kde.org/show_bug.cgi?id=427251
--- Comment #6 from Konrad Materka <mate...@gmail.com> --- Nate created a fix in 8 minutes, which is impressively super fast! @agentxlax you can test this fix without compiling Plasma from sources, just modify: /usr/share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/main.qml and change line: > readonly property int rowsOrColumns: autoSize || cellThickness <= > smallIconSize * 2 ? 1 : 2 to > readonly property int rowsOrColumns: autoSize ? 1 : Math.max(1, > Math.floor(cellThickness / smallIconSize)) -- You are receiving this mail because: You are watching all bug changes.