From 375dfafb5b15f11f576a7d56f367ec9ceb704d28 Mon Sep 17 00:00:00 2001 From: Adria Martin Date: Fri, 10 Apr 2026 19:02:07 +0700 Subject: [PATCH] chore: remove verbose comment --- Services/System/NotificationService.qml | 3 --- 1 file changed, 3 deletions(-) diff --git a/Services/System/NotificationService.qml b/Services/System/NotificationService.qml index 4126c9175..a853c8e41 100644 --- a/Services/System/NotificationService.qml +++ b/Services/System/NotificationService.qml @@ -770,9 +770,6 @@ Singleton { return ""; if (icon.startsWith("/") || icon.startsWith("file://")) return icon; - // Verify the icon exists in the theme before returning its image:// URI. - // Without this check, missing icons render as the purple/black checkerboard - // from IconImageProvider::missingPixmap instead of the notification fallback icon. if (!ThemeIcons.iconExists(icon)) return ""; return ThemeIcons.iconFromName(icon);