From 3d1dcacfd85635f47d6f8d7f3805f343e7aca54b Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sat, 12 Dec 2015 11:01:56 -0500 Subject: [PATCH] use correct source for application name when labelling a window --- libs/gtkmm2ext/gtk_ui.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/gtkmm2ext/gtk_ui.cc b/libs/gtkmm2ext/gtk_ui.cc index 0c15e5e3cc..ca4d6681dc 100644 --- a/libs/gtkmm2ext/gtk_ui.cc +++ b/libs/gtkmm2ext/gtk_ui.cc @@ -704,7 +704,7 @@ UI::popup_error (const string& text) MessageDialog msg (text); msg.set_title (string_compose (_("I'm sorry %1, I can't do that"), g_get_user_name())); - msg.set_wmclass (X_("error"), name()); + msg.set_wmclass (X_("error"), Glib::get_application_name()); msg.set_position (WIN_POS_MOUSE); msg.run (); }