diff options
author | fvogel <fvogelnew1@free.fr> | 2019-08-28 20:06:45 (GMT) |
---|---|---|
committer | fvogel <fvogelnew1@free.fr> | 2019-08-28 20:06:45 (GMT) |
commit | 8817c58860c07b4e3921a3815a108900e74b382c (patch) | |
tree | ec8bc59da56375da08fb2e786d11d22dfde64461 /win/tkWinWindow.c | |
parent | 59d624970150793def46d1ea7c3856714672cad8 (diff) | |
parent | 481ab0db7369e50a9ca7e74b5319efb2eb541385 (diff) | |
download | tk-8817c58860c07b4e3921a3815a108900e74b382c.zip tk-8817c58860c07b4e3921a3815a108900e74b382c.tar.gz tk-8817c58860c07b4e3921a3815a108900e74b382c.tar.bz2 |
Fix [69b48f427e]: Test 'textTag-18.1' fails since Win10 Creator Falls Update
Diffstat (limited to 'win/tkWinWindow.c')
-rw-r--r-- | win/tkWinWindow.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/tkWinWindow.c b/win/tkWinWindow.c index c7cd373..0b883b1 100644 --- a/win/tkWinWindow.c +++ b/win/tkWinWindow.c @@ -855,7 +855,7 @@ TkpShowBusyWindow( */ GetCursorPos(&point); - SetCursorPos(point.x, point.y); + TkSetCursorPos(point.x, point.y); } /* @@ -897,7 +897,7 @@ TkpHideBusyWindow( */ GetCursorPos(&point); - SetCursorPos(point.x, point.y); + TkSetCursorPos(point.x, point.y); } /* |