From 8cddc80bfc4b462231742f38b0683b951613020c Mon Sep 17 00:00:00 2001 From: Adrien Plazas Date: Mon, 2 Nov 2020 15:33:42 +0100 Subject: [PATCH] application: Set the program name This should help Phosh find the right icon for the application's window. --- src/application.vala | 1 + 1 file changed, 1 insertion(+) diff --git a/src/application.vala b/src/application.vala index a749a59..ba02501 100644 --- a/src/application.vala +++ b/src/application.vala @@ -82,6 +82,7 @@ private class TwentyFortyEight : Gtk.Application const string application_name = "org.gnome.TwentyFortyEight"; Environment.set_application_name (application_name); + Environment.set_prgname ("org.gnome.TwentyFortyEight"); Window.set_default_icon_name ("org.gnome.TwentyFortyEight"); try { -- GitLab