From 61d90a6d9116f4dbd72d4c1d3caaee9847a4a810 Mon Sep 17 00:00:00 2001 From: Alexander Schwinn Date: Thu, 30 Apr 2020 00:00:06 +0200 Subject: [PATCH] Remove suffix "- FileManager" from window title --- thunar/thunar-window.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/thunar/thunar-window.c b/thunar/thunar-window.c index f198d318..f4dc6847 100644 --- a/thunar/thunar-window.c +++ b/thunar/thunar-window.c @@ -3450,7 +3450,6 @@ thunar_window_current_directory_changed (ThunarFile *current_directory, ThunarWindow *window) { GtkAction *action; - gchar *title; gboolean show_full_path; gchar *parse_name = NULL; const gchar *name; @@ -3474,9 +3473,7 @@ G_GNUC_END_IGNORE_DEPRECATIONS name = thunar_file_get_display_name (current_directory); /* set window title */ - title = g_strdup_printf ("%s - %s", name, _("File Manager")); - gtk_window_set_title (GTK_WINDOW (window), title); - g_free (title); + gtk_window_set_title (GTK_WINDOW (window), name); g_free (parse_name); /* set window icon */ -- 2.26.2