From 817ae5069230820f8027e44400c76e5caab56521 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Tue, 19 Mar 2024 14:01:13 +0100 Subject: [PATCH] altTab: 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: --- js/ui/altTab.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/altTab.js b/js/ui/altTab.js index 0e64d65ee..004ca81a5 100644 --- a/js/ui/altTab.js +++ b/js/ui/altTab.js @@ -1050,7 +1050,7 @@ class WindowIcon extends St.BoxLayout { _createAppIcon(app, size) { let appIcon = app ? app.create_icon_texture(size) - : new St.Icon({icon_name: 'icon-missing', icon_size: size}); + : new St.Icon({icon_name: 'application-x-executable', icon_size: size}); appIcon.x_expand = appIcon.y_expand = true; appIcon.x_align = appIcon.y_align = Clutter.ActorAlign.END;