mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
updated for version 7.2.385
Problem: When in the command line window dragging status line only works for last-but-one window. (Jean Johner) Solution: Remove the code that disallows this.
This commit is contained in:
parent
2498b3ab10
commit
f679a43dbb
9
src/ui.c
9
src/ui.c
@ -2598,14 +2598,7 @@ retnomove:
|
|||||||
if (cmdwin_type != 0 && wp != curwin)
|
if (cmdwin_type != 0 && wp != curwin)
|
||||||
{
|
{
|
||||||
/* A click outside the command-line window: Use modeless
|
/* A click outside the command-line window: Use modeless
|
||||||
* selection if possible. Allow dragging the status line of
|
* selection if possible. Allow dragging the status lines. */
|
||||||
* windows just above the command-line window. */
|
|
||||||
if (wp->w_winrow + wp->w_height
|
|
||||||
!= curwin->w_prev->w_winrow + curwin->w_prev->w_height)
|
|
||||||
{
|
|
||||||
on_status_line = 0;
|
|
||||||
dragwin = NULL;
|
|
||||||
}
|
|
||||||
# ifdef FEAT_VERTSPLIT
|
# ifdef FEAT_VERTSPLIT
|
||||||
on_sep_line = 0;
|
on_sep_line = 0;
|
||||||
# endif
|
# endif
|
||||||
|
@ -681,6 +681,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
385,
|
||||||
/**/
|
/**/
|
||||||
384,
|
384,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user