Skip to content

Commit

Permalink
Merge pull request #6 from LynithDev/master
Browse files Browse the repository at this point in the history
Fix app icon
  • Loading branch information
LynithDev authored Apr 19, 2023
2 parents 3b14849 + 687d19e commit 7062000
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 7062000

Please sign in to comment.