Summary: | Dim icons in Folder View widget in the panel, only with view mode "list" | ||
---|---|---|---|
Product: | [Plasma] plasmashell | Reporter: | David de Cos <david.decos> |
Component: | Desktop icons & Folder View widget | Assignee: | Plasma Bugs List <plasma-bugs> |
Status: | RESOLVED FIXED | ||
Severity: | minor | CC: | hein, nate |
Priority: | NOR | Keywords: | regression |
Version: | git-stable-Plasma/6.3 | ||
Target Milestone: | 1.0 | ||
Platform: | Other | ||
OS: | Linux | ||
Latest Commit: | https://invent.kde.org/plasma/plasma-desktop/-/commit/9a230caf440c364a56ce37c17725c029b52ceeca | Version Fixed In: | 6.3.4 |
Sentry Crash Report: | |||
Attachments: | Folder View widget in Plasma 6.1 vs Plasma 6.3 |
Description
David de Cos
2025-03-20 13:56:49 UTC
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! |