[gnome-shell/wip/rstrode/rhel-8.0.0: 20/50] app: Fall back to window title instead of WM_CLASS



commit 585cf9c17d55c79ca6437eb4ecc3a5b61aa7f994
Author: Florian Müllner <fmuellner gnome org>
Date:   Wed May 20 16:44:00 2015 +0200

    app: Fall back to window title instead of WM_CLASS
    
    It's a bad fallback as it's clearly window-specific (rather than
    app-specific), but it likely looks prettier when we fail to associate
    a .desktop file ...

 src/shell-app.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/src/shell-app.c b/src/shell-app.c
index dbf537ce9..84fcc97bf 100644
--- a/src/shell-app.c
+++ b/src/shell-app.c
@@ -265,7 +265,7 @@ shell_app_get_name (ShellApp *app)
       const char *name = NULL;
 
       if (window)
-        name = meta_window_get_wm_class (window);
+        name = meta_window_get_title (window);
       if (!name)
         name = C_("program", "Unknown");
       return name;


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]