Mercurial > vim
changeset 973:d607b48414b7 v7.0.099
updated for version 7.0-099
author | vimboss |
---|---|
date | Sun, 10 Sep 2006 19:39:25 +0000 |
parents | decce137e7be |
children | ed44c1c436d3 |
files | src/gui.c src/version.c |
diffstat | 2 files changed, 14 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/gui.c +++ b/src/gui.c @@ -3734,6 +3734,12 @@ gui_drag_scrollbar(sb, value, still_drag if (dont_scroll || input_available()) return; #endif +#ifdef FEAT_INS_EXPAND + /* Disallow scrolling the current window when the completion popup menu is + * visible. */ + if ((sb->wp == NULL || sb->wp == curwin) && pum_visible()) + return; +#endif #ifdef FEAT_RIGHTLEFT if (sb->wp == NULL && curwin->w_p_rl) @@ -4208,6 +4214,12 @@ gui_do_scroll() updateWindow(wp); /* update window, status line, and cmdline */ } +#ifdef FEAT_INS_EXPAND + /* May need to redraw the popup menu. */ + if (pum_visible()) + pum_redraw(); +#endif + return (wp == curwin && !equalpos(curwin->w_cursor, old_cursor)); }