fix #0025407: MouseMove with pressed mouse button is not received in TFrame with Cocoa Widgetset

git-svn-id: trunk@43536 -
This commit is contained in:
freq 2013-12-13 09:58:50 +00:00
parent 7fe86ac347
commit 42921b3dcb

View File

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