From c57d3e68c3a9b838931138d65c4b6b9a2207bda1 Mon Sep 17 00:00:00 2001 From: Ivailo Monev Date: Mon, 3 Jun 2024 22:53:17 +0300 Subject: [PATCH] dolphin: do not add the KFileItem overlays to the roles data now that thumbnailers paint overlays (by using KIO::pixmapForUrl()) the overlays were painted twice (once by the thumbnailers and once by dolphin itself), see the previous commit Signed-off-by: Ivailo Monev --- dolphin/src/kitemviews/kfileitemmodelrolesupdater.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/dolphin/src/kitemviews/kfileitemmodelrolesupdater.cpp b/dolphin/src/kitemviews/kfileitemmodelrolesupdater.cpp index b3080d31..6a10bc03 100644 --- a/dolphin/src/kitemviews/kfileitemmodelrolesupdater.cpp +++ b/dolphin/src/kitemviews/kfileitemmodelrolesupdater.cpp @@ -912,8 +912,6 @@ QHash KFileItemModelRolesUpdater::rolesData(const KFileIte data.insert("type", item.mimeComment()); } - data.insert("iconOverlays", item.overlays()); - return data; }