summaryrefslogtreecommitdiffstats
path: root/src/channel.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-12-09 10:51:05 +0000
committerBram Moolenaar <Bram@vim.org>2021-12-09 10:51:05 +0000
commite50507126f532a0b0ae65e201a6372b7ea5b0ccd (patch)
tree91e6c7e0409133dfd761059f03055320e3659cdc /src/channel.c
parent56150da6879a96db1c84c7ec4ceedeb84969f606 (diff)
patch 8.2.3763: when editing the cmdline a callback may cause a scroll upv8.2.3763
Problem: When editing the command line a FocusLost callback may cause the screen to scroll up. Solution: Do not redraw at the last line but at the same place where the command line was before. (closes #9295)
Diffstat (limited to 'src/channel.c')
-rw-r--r--src/channel.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/channel.c b/src/channel.c
index 634312412c..05e248933b 100644
--- a/src/channel.c
+++ b/src/channel.c
@@ -3205,7 +3205,7 @@ channel_close(channel_T *channel, int invoke_close_cb)
if (channel_need_redraw)
{
channel_need_redraw = FALSE;
- redraw_after_callback(TRUE);
+ redraw_after_callback(TRUE, FALSE);
}
if (!channel->ch_drop_never)
@@ -4687,7 +4687,7 @@ channel_parse_messages(void)
if (channel_need_redraw)
{
channel_need_redraw = FALSE;
- redraw_after_callback(TRUE);
+ redraw_after_callback(TRUE, FALSE);
}
--safe_to_invoke_callback;