Skip to content

Commit

Permalink
Fix app icon
Browse files Browse the repository at this point in the history
  • Loading branch information
LynithDev authored Apr 19, 2023
1 parent 1648038 commit 687d19e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prefs.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 687d19e

Please sign in to comment.