https://bugs.kde.org/show_bug.cgi?id=501166
--- Comment #3 from Nate Graham <n...@kde.org> --- This fixes it for everything in my testing: diff --git applets/mediacontroller/package/contents/ui/CompactRepresentation.qml applets/mediacontroller/package/contents/ui/CompactRepresentation.qml index 2bf97b116c..72b71b3666 100644 --- applets/mediacontroller/package/contents/ui/CompactRepresentation.qml +++ applets/mediacontroller/package/contents/ui/CompactRepresentation.qml @@ -25,7 +25,7 @@ Loader { switch (compactRepresentation.layoutForm) { case CompactRepresentation.LayoutType.HorizontalPanel: case CompactRepresentation.LayoutType.HorizontalDesktop: - return implicitWidth; + return implicitWidth + 10; default: return -1; } That's obviously the wrong change to fix it, but it shows that the Loader's implicitWidth is being set to something slightly too narrow. -- You are receiving this mail because: You are watching all bug changes.