From 56a74abb8af8e7ac8767c8552eef82063d2d6e57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Tue, 19 Mar 2024 13:16:50 +0100 Subject: [PATCH] window-list: Use more appropriate fallback icon 'icon-missing' is not an actual icon name. It somewhat works because an invalid icon name will fallback to the correct 'image-missing', however for apps the generic app icon is a better fallback. Part-of: --- extensions/window-list/extension.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/window-list/extension.js b/extensions/window-list/extension.js index 90bf34cd..c3ffe92f 100644 --- a/extensions/window-list/extension.js +++ b/extensions/window-list/extension.js @@ -165,7 +165,7 @@ class WindowTitle extends St.BoxLayout { this._icon.child = app.create_icon_texture(ICON_TEXTURE_SIZE); } else { this._icon.child = new St.Icon({ - icon_name: 'icon-missing', + icon_name: 'application-x-executable', icon_size: ICON_TEXTURE_SIZE, }); }