diff options
author | Bram Moolenaar <Bram@vim.org> | 2021-12-09 10:51:05 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-12-09 10:51:05 +0000 |
commit | e50507126f532a0b0ae65e201a6372b7ea5b0ccd (patch) | |
tree | 91e6c7e0409133dfd761059f03055320e3659cdc /src/sound.c | |
parent | 56150da6879a96db1c84c7ec4ceedeb84969f606 (diff) | |
download | vim-git-e50507126f532a0b0ae65e201a6372b7ea5b0ccd.tar.gz |
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/sound.c')
-rw-r--r-- | src/sound.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sound.c b/src/sound.c index e704aed69..2f121eb47 100644 --- a/src/sound.c +++ b/src/sound.c @@ -173,7 +173,7 @@ invoke_sound_callback(void) delete_sound_callback(scb->scb_callback); vim_free(scb); } - redraw_after_callback(TRUE); + redraw_after_callback(TRUE, FALSE); } static void @@ -327,7 +327,7 @@ sound_wndproc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) clear_tv(&rettv); delete_sound_callback(p); - redraw_after_callback(TRUE); + redraw_after_callback(TRUE, FALSE); } break; |