mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 05:28:17 +02:00
LCL: reorder evaluation in DragStop. Patch by Artem Izmaylov. issue #41539
This commit is contained in:
parent
447b40f4c8
commit
1dd3bb3d01
@ -239,7 +239,7 @@ begin
|
||||
TargetPos := ADragObjectCopy.DragTargetPos //controls can override the position
|
||||
else
|
||||
TargetPos := ADragObjectCopy.DragPos; //otherwise take the current position
|
||||
Accepted := ADropped and SendCmDragMsg(ADragObjectCopy, dmDragLeave);
|
||||
Accepted := SendCmDragMsg(ADragObjectCopy, dmDragLeave) and ADropped;
|
||||
ADragObjectCopy.FDropped := Accepted;
|
||||
|
||||
if ADragObjectCopy.DragTarget <> nil then
|
||||
@ -630,7 +630,7 @@ begin
|
||||
TargetPos := ADockObjectCopy.DragTargetPos //controls can override the position
|
||||
else
|
||||
TargetPos := ADockObjectCopy.DragPos; //otherwise take the current position
|
||||
Accepted := Accepted and (Moved or ADockObjectCopy.Floating or SendCmDragMsg(ADockObjectCopy, dmDragLeave)) and ADropped;
|
||||
Accepted := (SendCmDragMsg(ADockObjectCopy, dmDragLeave) or Moved or ADockObjectCopy.Floating) and Accepted and ADropped;
|
||||
ADockObjectCopy.FDropped := Accepted;
|
||||
|
||||
// float
|
||||
|
Loading…
Reference in New Issue
Block a user