From 687d19e1c7d4461d35abd9f2790abe5408996ed4 Mon Sep 17 00:00:00 2001 From: LynithDev <61880709+LynithDev@users.noreply.github.com> Date: Wed, 19 Apr 2023 10:53:58 +0200 Subject: [PATCH] Fix app icon --- prefs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prefs.js b/prefs.js index 397ab27..7ab5d60 100644 --- a/prefs.js +++ b/prefs.js @@ -23,7 +23,7 @@ function fillPreferencesWindow(window) { } else { for (const appId of hiddenApps) { const appInfo = Gio.DesktopAppInfo.new(appId); - const appIcon = appInfo.get_icon() == null ? "application-x-executable" : appInfo.get_icon(); + const appIcon = appInfo.get_icon() == null ? "application-x-executable" : appInfo.get_icon().to_string(); const row = new Adw.ActionRow({ icon_name: appIcon,