https://bugs.kde.org/show_bug.cgi?id=355935
--- Comment #62 from Antonio Orefice <kokok...@gmail.com> --- At least for folderviews, i noticed that it happens only when the text is "center aligned" (task manager looks good), so here comes my hacky workaround for plasmashell. in /usr/share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderItemDelegate.qml: Find: width: Math.min(label.implicitWidth + units.smallSpacing, parent.width - units.smallSpacing * 4) Replace with: width: Math.min(label.implicitWidth + 4, parent.width - 4) ...restart plasmashell, looks nice to me. (maybe change 4 to something that fits better for your resolution). -- You are receiving this mail because: You are watching all bug changes.