diff options
| author | nyamatongwe <unknown> | 2003-02-23 02:05:55 +0000 |
|---|---|---|
| committer | nyamatongwe <unknown> | 2003-02-23 02:05:55 +0000 |
| commit | 647c273bc7f97218914b1b57f9f7a10ad3beb715 (patch) | |
| tree | 0dfb714062262b4ce1d68b9c349c7b6beda63de1 /win32/PlatWin.cxx | |
| parent | 3de2de75f4d65a528089c9e28037974b44632ab9 (diff) | |
| download | scintilla-mirror-647c273bc7f97218914b1b57f9f7a10ad3beb715.tar.gz | |
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.
Diffstat (limited to 'win32/PlatWin.cxx')
| -rw-r--r-- | win32/PlatWin.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
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); } |
