1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-06 17:53:13 +02:00

core: fix wrong terminal title on terminal resize (closes #1702)

This commit is contained in:
Sébastien Helleu
2022-09-17 11:56:03 +02:00
parent 0df582c7c1
commit 36d2e7427e
2 changed files with 5 additions and 0 deletions
+1
View File
@@ -35,6 +35,7 @@ New features::
Bug fixes::
* core: fix wrong terminal title on terminal resize (issue #1702)
* irc: fix duplicated channels in autojoin option when autojoin_dynamic is enabled (issue #1795)
* irc: fix display of TOPIC and QUIT messages with an empty trailing parameter (issue #1797)
* irc: fix parsing of messages with trailing spaces and no trailing parameter (issue #1803)
+4
View File
@@ -2418,6 +2418,10 @@ gui_window_refresh_screen (int full_refresh)
refresh ();
gui_window_read_terminal_size ();
refresh ();
gui_window_set_title (
(CONFIG_STRING(config_look_window_title)
&& CONFIG_STRING(config_look_window_title)[0]) ?
CONFIG_STRING(config_look_window_title) : NULL);
}
gui_window_refresh_windows ();