diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-01-19 19:54:20 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-01-19 19:54:20 +0100 |
commit | 2d951a486e632f99fe039c0b0a1685f1fe7879b2 (patch) | |
tree | a66e908c923cb82fa7e4b1577e20ea756949767f /src/gui_w32.c | |
parent | a502caab8bd396316a6eb5cb821b0a0df55c502a (diff) | |
download | vim-git-2d951a486e632f99fe039c0b0a1685f1fe7879b2.tar.gz |
patch 8.1.0782: Win32: cursor blinks when Vim is not activev8.1.0782
Problem: Win32: cursor blinks when Vim is not active.
Solution: Remove call to setActiveWindow(). (Yasuhiro Matsumoto,
closes #3778)
Diffstat (limited to 'src/gui_w32.c')
-rw-r--r-- | src/gui_w32.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/gui_w32.c b/src/gui_w32.c index ceaa041b6..4637aa2de 100644 --- a/src/gui_w32.c +++ b/src/gui_w32.c @@ -2442,12 +2442,6 @@ CenterWindow( } #endif /* FEAT_GUI_DIALOG */ -void -gui_mch_activate_window(void) -{ - (void)SetActiveWindow(s_hwnd); -} - #if defined(FEAT_TOOLBAR) || defined(PROTO) void gui_mch_show_toolbar(int showit) |