From 5956bed5657ee07dd7c6cbb3f89b15b856833f67 Mon Sep 17 00:00:00 2001 From: Sergio Costas Rodriguez <sergio.costas@canonical.com> Date: Wed, 13 Dec 2023 18:40:25 +0100 Subject: [PATCH] Show "App Center" in Gnome Shell activities view Currently, the window in the Activities view in Gnome Shell has "snap-store" as its name, which is incorrect because this is the brand-new "App Center". The reason is that the Activities view shows the window title, but the app center doesn't set it, so it is set to the binary name. This patch fixes it, although it should be modified in the future to use the translated name. fix #1425 --- packages/app_center/linux/my_application.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/app_center/linux/my_application.cc b/packages/app_center/linux/my_application.cc index 6c7224433..e1bd3f226 100644 --- a/packages/app_center/linux/my_application.cc +++ b/packages/app_center/linux/my_application.cc @@ -33,6 +33,7 @@ static void my_application_activate(GApplication* application) { GtkWindow* window = GTK_WINDOW(hdy_application_window_new()); gtk_window_set_application(window, GTK_APPLICATION(application)); + gtk_window_set_title(window, "App Center"); GdkGeometry geometry;