SUMMARY I have a Folder View widget in my panel, configured in list mode. In the last weeks, probably since updating to Plasma 6.3, the icons in the widget have become very dim. Ever since Plasma 5, with the exact same themes, configurations, etc, those icons always looked normal (i.e. bright). Besides that, I know it's not something to do with my specific configuration because I have checked on a new user with default themes and settings, and the Folder View icons look dim there too. STEPS TO REPRODUCE 1. Add a Folder View widget to your panel. Set it as View mode = List (the bug doesn't happen with Grid). 2. Click on the widget and have a look at the icons in the list. OBSERVED RESULT The icons are very dim. EXPECTED RESULT The icons should be as bright as they were in all previous versions, and as bright as they are in Grid mode. SOFTWARE/OS VERSIONS Operating System: openSUSE Tumbleweed 20250318 KDE Plasma Version: 6.3.3 KDE Frameworks Version: 6.12.0 Qt Version: 6.8.2 Kernel Version: 6.13.6-1-default (64-bit) Graphics Platform: Wayland ADDITIONAL INFORMATION - The Folder View must be inside a panel, since the list view mode isn't available otherwise. - In the next comment I will show a comparison between the same Folder View widget (also same Plasma theme, icons, etc) in Plasma 6.1 and Plasma 6.3.
Created attachment 179602 [details] Folder View widget in Plasma 6.1 vs Plasma 6.3
Can confirm.
Aha, it regressed in https://invent.kde.org/plasma/plasma-desktop/-/commit/f7a92f7e65ac09cfd82a01835ac9f955c1b25744. Previously selectionButton could be null, so checking for its existence was fine. In that commit, it's always initialized to something, so now we should check for visibility, the way the rest of the code in this file does. Patch incoming.
A possibly relevant merge request was started @ https://invent.kde.org/plasma/plasma-desktop/-/merge_requests/2898
Git commit 13125b69d838200e624de9208a21af30188cbd59 by Nate Graham. Committed on 21/03/2025 at 18:30. Pushed by ngraham into branch 'master'. applets/folderview: fix list view icon opacity Previously selectionButton could be null, so checking for its existence was fine. In f7a92f7e65ac09cfd82a01835ac9f955c1b25744, it's now always initialized to something, so we should check for visibility, the way the rest of the code in this file does. FIXED-IN: 6.3.4 M +1 -1 containments/desktop/package/contents/ui/FolderItemDelegate.qml https://invent.kde.org/plasma/plasma-desktop/-/commit/13125b69d838200e624de9208a21af30188cbd59
Git commit 9a230caf440c364a56ce37c17725c029b52ceeca by Nate Graham. Committed on 21/03/2025 at 19:46. Pushed by ngraham into branch 'Plasma/6.3'. applets/folderview: fix list view icon opacity Previously selectionButton could be null, so checking for its existence was fine. In f7a92f7e65ac09cfd82a01835ac9f955c1b25744, it's now always initialized to something, so we should check for visibility, the way the rest of the code in this file does. FIXED-IN: 6.3.4 (cherry picked from commit 13125b69d838200e624de9208a21af30188cbd59) Co-authored-by: Nate Graham <nate@kde.org> M +1 -1 containments/desktop/package/contents/ui/FolderItemDelegate.qml https://invent.kde.org/plasma/plasma-desktop/-/commit/9a230caf440c364a56ce37c17725c029b52ceeca
Thank you for the quick patch, Nate!
You're welcome!