]> git.ipfire.org Git - thirdparty/vim.git/commit
patch 9.0.1726: incorrect heights in win_size_restore() v9.0.1726
authorSean Dewar <seandewar@users.noreply.github.com>
Thu, 17 Aug 2023 20:40:05 +0000 (22:40 +0200)
committerChristian Brabandt <cb@256bit.org>
Thu, 17 Aug 2023 20:40:05 +0000 (22:40 +0200)
commit876f5fb570d8401aa4c58af4a5da91f10520aa9d
treea8092cac4d320598313b9860078ea6836243360f
parente500ae8e29ad921378085f5d70ee5c0c537be1ba
patch 9.0.1726: incorrect heights in win_size_restore()

Problem: incorrect heights in win_size_restore()
Solution: avoid restoring incorrect heights in win_size_restore()

Changing 'showtabline' or 'cmdheight' in the cmdwin restores incorrect
window heights after closing the cmdwin.

This may produce a gap between the cmdline and the window above.

Solution: restore window sizes only if the number of lines available for windows
changed; subtract the rows of the tabline, cmdline and last window's statusline
from 'lines' (other statuslines don't matter).

closes: #12704

Signed-off-by: Christian Brabandt <cb@256bit.org>
Co-authored-by: Sean Dewar <seandewar@users.noreply.github.com>
src/proto/window.pro
src/screen.c
src/testdir/test_cmdwin.vim
src/version.c
src/window.c