diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-03-02 18:16:09 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-03-02 18:16:09 +0100 |
commit | f679a43dbb969b0bb81903abe6b61a63a7d4a22f (patch) | |
tree | 047b7c35b34391dc938c8b570ce3a8299d442a91 /src | |
parent | 2498b3ab108a99f125e756ac46bf2629ceb23c25 (diff) | |
download | vim-f679a43dbb969b0bb81903abe6b61a63a7d4a22f.zip |
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.
Diffstat (limited to 'src')
-rw-r--r-- | src/ui.c | 9 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 3 insertions, 8 deletions
@@ -2598,14 +2598,7 @@ retnomove: if (cmdwin_type != 0 && wp != curwin) { /* A click outside the command-line window: Use modeless - * selection if possible. Allow dragging the status line of - * 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; - } + * selection if possible. Allow dragging the status lines. */ # ifdef FEAT_VERTSPLIT on_sep_line = 0; # endif diff --git a/src/version.c b/src/version.c index f4eaa93e6..b4f673676 100644 --- a/src/version.c +++ b/src/version.c @@ -682,6 +682,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 385, +/**/ 384, /**/ 383, |