summaryrefslogtreecommitdiffstats
path: root/src/gui_w32.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-01-19 19:54:20 +0100
committerBram Moolenaar <Bram@vim.org>2019-01-19 19:54:20 +0100
commit2d951a486e632f99fe039c0b0a1685f1fe7879b2 (patch)
treea66e908c923cb82fa7e4b1577e20ea756949767f /src/gui_w32.c
parenta502caab8bd396316a6eb5cb821b0a0df55c502a (diff)
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.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/gui_w32.c b/src/gui_w32.c
index ceaa041b69..4637aa2de5 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)