mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-11-20 20:41:00 +01:00
win32: use ssDouble, ssTriple and ssQuad in MouseUp handlers
git-svn-id: trunk@51573 -
This commit is contained in:
parent
7be1f95d3a
commit
c57f581e7c
@ -1534,6 +1534,11 @@ begin
|
||||
XPos := GET_X_LPARAM(LParam);
|
||||
YPos := GET_Y_LPARAM(LParam);
|
||||
Keys := WParam;
|
||||
case MouseDownCount of
|
||||
2: Keys := Keys or MK_DOUBLECLICK;
|
||||
3: Keys := Keys or MK_TRIPLECLICK;
|
||||
4: Keys := Keys or MK_QUADCLICK;
|
||||
end;
|
||||
end;
|
||||
end;
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user