changeset 28889:d401ff43cd5f v8.2.4967

patch 8.2.4967: MS-Windows GUI: mouse event test sometimes fails Commit: https://github.com/vim/vim/commit/3c25a8617aad9860a1b179d40a183c638b3b70cc Author: Bram Moolenaar <Bram@vim.org> Date: Mon May 16 17:07:41 2022 +0100 patch 8.2.4967: MS-Windows GUI: mouse event test sometimes fails Problem: MS-Windows GUI: mouse event test sometimes fails. Solution: Ignore one move event only if there is an extra event.
author Bram Moolenaar <Bram@vim.org>
date Mon, 16 May 2022 18:15:03 +0200
parents 0c101d91090f
children 2a04de1b3d85
files src/testdir/test_gui.vim src/version.c
diffstat 2 files changed, 4 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/testdir/test_gui.vim
+++ b/src/testdir/test_gui.vim
@@ -1252,8 +1252,8 @@ func Test_gui_mouse_move_event()
   call test_gui_event('mouse', args)
   call feedkeys('', 'Lx!')
 
-  if has('win32')
-    " FIXME: on MS-Windows we get a stray event first
+  " FIXME: on MS-Windows we get a stray event first
+  if has('win32') && len(g:eventlist) == 3
     let g:eventlist = g:eventlist[1 : ]
   endif
 
--- a/src/version.c
+++ b/src/version.c
@@ -747,6 +747,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    4967,
+/**/
     4966,
 /**/
     4965,