Patch 7.4.706
Problem: Window drawn wrong when 'laststatus' is zero and there is a
command-line window. (Yclept Nemo)
Solution: Set the status height a bit later. (Christian Brabandt)
Files: src/window.c
*** ../vim-7.4.705/src/window.c 2015-02-27 17:19:07.104942344 +0100
--- src/window.c 2015-04-21 15:42:55.362449950 +0200
***************
*** 1236,1242 ****
{
wp->w_winrow = oldwin->w_winrow + oldwin->w_height + STATUS_HEIGHT;
wp->w_status_height = oldwin->w_status_height;
! oldwin->w_status_height = STATUS_HEIGHT;
}
#ifdef FEAT_VERTSPLIT
if (flags & WSP_BOT)
--- 1236,1243 ----
{
wp->w_winrow = oldwin->w_winrow + oldwin->w_height + STATUS_HEIGHT;
wp->w_status_height = oldwin->w_status_height;
! /* Don't set the status_height for oldwin yet, this might break
! * frame_fix_height(oldwin), therefore will be set below. */
}
#ifdef FEAT_VERTSPLIT
if (flags & WSP_BOT)
***************
*** 1244,1249 ****
--- 1245,1255 ----
#endif
frame_fix_height(wp);
frame_fix_height(oldwin);
+
+ if (!before)
+ /* new window above current one, set the status_height after
+ * frame_fix_height(oldwin) */
+ oldwin->w_status_height = STATUS_HEIGHT;
}
if (flags & (WSP_TOP | WSP_BOT))
*** ../vim-7.4.705/src/version.c 2015-04-21 15:25:26.425488328 +0200
--- src/version.c 2015-04-21 15:29:15.675076417 +0200
***************
*** 743,744 ****
--- 743,746 ----
{ /* Add new patch number below this line */
+ /**/
+ 706,
/**/
--
It is too bad that the speed of light hasn't kept pace with the
changes in CPU speed and network bandwidth. -- <[email protected]>
/// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\ an exciting new programming language -- http://www.Zimbu.org ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.