mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 10:18:05 +02:00
designer: simplify previous commit
git-svn-id: trunk@20726 -
This commit is contained in:
parent
7dd0bd8b77
commit
b40172afcd
@ -734,7 +734,8 @@ begin
|
||||
if DesignerForm <> nil then
|
||||
M := Max(0, Min(M, DesignerForm.ClientWidth - NonVisualCompWidth));
|
||||
|
||||
TComponent(FPersistent).DesignInfo := DesignInfoFrom(Word(Min(M, Max(0, ALeft))), LongRec(TComponent(FPersistent).DesignInfo).Hi);
|
||||
with LongRec(TComponent(FPersistent).DesignInfo) do
|
||||
Lo := Word(Min(M, Max(0, ALeft)));
|
||||
end;
|
||||
|
||||
FCachedLeft:=ALeft;
|
||||
@ -769,7 +770,8 @@ begin
|
||||
if DesignerForm <> nil then
|
||||
M := Max(0, Min(M, DesignerForm.ClientHeight - NonVisualCompWidth));
|
||||
|
||||
TComponent(FPersistent).DesignInfo := DesignInfoFrom(LongRec(TComponent(FPersistent).DesignInfo).Lo, Word(Min(M, Max(0, ATop))));
|
||||
with LongRec(TComponent(FPersistent).DesignInfo) do
|
||||
Hi := Word(Min(M, Max(0, ATop)));
|
||||
end;
|
||||
|
||||
FCachedTop:=ATop;
|
||||
|
Loading…
Reference in New Issue
Block a user