1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-26 21:06:38 +02:00

core: fix bad window size on startup with some terminals like kitty (closes #1769)

This commit is contained in:
Sébastien Helleu
2022-03-27 17:19:39 +02:00
parent 6fb6fad7e9
commit 01f9bcbaba
2 changed files with 10 additions and 0 deletions
+7
View File
@@ -15,6 +15,13 @@ https://weechat.org/files/releasenotes/ReleaseNotes-devel.html[release notes]
(file _ReleaseNotes.adoc_ in sources).
[[v3.6]]
== Version 3.6 (under dev)
Bug fixes::
* core: fix bad window size on startup with some terminals like https://github.com/kovidgoyal/kitty[kitty] (issue #1769)
[[v3.5]]
== Version 3.5 (2022-03-27)
+3
View File
@@ -409,7 +409,10 @@ gui_main_loop ()
/* catch SIGWINCH signal: redraw screen */
if (!weechat_headless)
{
gui_signal_sigwinch_received = 1;
signal_catch (SIGWINCH, &gui_main_signal_sigwinch);
}
/* hook stdin (read keyboard) */
if (weechat_headless)