Cocoa: Fix mouse move bug on custom control

git-svn-id: trunk@43787 -
This commit is contained in:
freq 2014-01-24 13:43:38 +00:00
parent 86249e6c23
commit 69097c78b5

View File

@ -1325,6 +1325,7 @@ end;
procedure TCocoaCustomControl.mouseMoved(event: NSEvent);
begin
if not Assigned(callback) or not callback.MouseMove(event) then
inherited mouseMoved(event);
end;