diff options
author | Chase Patterson <robert@rcpatterson.net> | 2017-09-15 05:05:46 -0400 |
---|---|---|
committer | TingPing <tingping@tingping.se> | 2017-09-15 19:18:29 -0400 |
commit | d9351978958dcf137cdf2979d7614ac7a63da367 (patch) | |
tree | a2ca1c882a802de8f98526abac7d0970c453c61d /src/fe-gtk/banlist.c | |
parent | b29a046b55cb35ac9148d2084e42d9a09daee8e9 (diff) |
Change windows from starting with "Hexchat: " to ending with " - Hexchat"
Diffstat (limited to 'src/fe-gtk/banlist.c')
-rw-r--r-- | src/fe-gtk/banlist.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fe-gtk/banlist.c b/src/fe-gtk/banlist.c index 5d0d6862..99a99277 100644 --- a/src/fe-gtk/banlist.c +++ b/src/fe-gtk/banlist.c @@ -436,7 +436,7 @@ banlist_do_refresh (banlist_info *banl) { GtkListStore *store; - g_snprintf (tbuf, sizeof tbuf, DISPLAY_NAME": Ban List (%s, %s)", + g_snprintf (tbuf, sizeof tbuf, "Ban List (%s, %s) - ", sess->channel, sess->server->servername); mg_set_title (banl->window, tbuf); @@ -805,7 +805,7 @@ banlist_opengui (struct session *sess) /* Force on the checkmark in the "Bans" box */ banl->checked = 1<<MODE_BAN; - g_snprintf (tbuf, sizeof tbuf, _(DISPLAY_NAME": Ban List (%s)"), + g_snprintf (tbuf, sizeof tbuf, _("Ban List (%s) - "DISPLAY_NAME), sess->server->servername); banl->window = mg_create_generic_tab ("BanList", tbuf, FALSE, |