mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-19 15:19:16 +02:00
fix MouseUpDownEvent result
git-svn-id: trunk@34461 -
This commit is contained in:
parent
101308219b
commit
f14309acc4
@ -286,7 +286,7 @@ begin
|
||||
Msg.Msg := CheckMouseButtonDown(MButton);
|
||||
|
||||
NotifyApplicationUserInput(Msg.Msg);
|
||||
Result := DeliverMessage(Msg) = 0;
|
||||
Result := DeliverMessage(Msg) <> 0;
|
||||
end;
|
||||
NSLeftMouseUp,
|
||||
NSRightMouseUp,
|
||||
@ -297,7 +297,7 @@ begin
|
||||
Msg.Msg := MSGKINDUP[MButton];
|
||||
|
||||
NotifyApplicationUserInput(Msg.Msg);
|
||||
Result := DeliverMessage(Msg) = 0;
|
||||
Result := DeliverMessage(Msg) <> 0;
|
||||
end;
|
||||
end;
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user