mirror of
https://github.com/macvim-dev/macvim.git
synced 2026-06-11 15:37:29 +02:00
Double-click, triple-click, etc. were not properly handled by MouseDownMsgID
git-svn-id: http://macvim.googlecode.com/svn/trunk@258 96c4425d-ca35-0410-94e5-3396d5c13a8f
This commit is contained in:
+1
-1
@@ -1381,7 +1381,7 @@ enum {
|
||||
button = eventButtonNumberToVimMouseButton(button);
|
||||
flags = eventModifierFlagsToVimMouseModMask(flags);
|
||||
|
||||
gui_send_mouse_event(button, col, row, 0 != count, flags);
|
||||
gui_send_mouse_event(button, col, row, count>1, flags);
|
||||
} else if (MouseUpMsgID == msgid) {
|
||||
if (!data) return;
|
||||
const void *bytes = [data bytes];
|
||||
|
||||
Reference in New Issue
Block a user