From dc46f3c00e60ecbca323ea661c02c146943024cf Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Sun, 23 Feb 2003 02:05:55 +0000 Subject: Patch from Jakub Vrana to avoid mouse debouncing on Windows where assigning a key to double click can result in two mouse clicks arriving with the same time. --- win32/PlatWin.cxx | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'win32') diff --git a/win32/PlatWin.cxx b/win32/PlatWin.cxx index dbcc3c940..80a2e8557 100644 --- a/win32/PlatWin.cxx +++ b/win32/PlatWin.cxx @@ -1281,6 +1281,10 @@ unsigned int Platform::DoubleClickTime() { return ::GetDoubleClickTime(); } +bool Platform::MouseButtonBounce() { + return false; +} + void Platform::DebugDisplay(const char *s) { ::OutputDebugString(s); } -- cgit v1.2.3