mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-20 12:19:20 +02:00
fixed anchoring TMacroSelectionBox
git-svn-id: trunk@12363 -
This commit is contained in:
parent
3c8fead5c5
commit
0ea63fe0d4
@ -776,7 +776,9 @@ begin
|
|||||||
AutoSize:=true;
|
AutoSize:=true;
|
||||||
Anchors:=[akTop,akRight];
|
Anchors:=[akTop,akRight];
|
||||||
Top:=0;
|
Top:=0;
|
||||||
AnchorParallel(akRight,6,Self);
|
BorderSpacing.Around := 6;
|
||||||
|
AnchorParallel(akTop,0,Self);
|
||||||
|
AnchorParallel(akRight,0,Self);
|
||||||
Parent:=Self;
|
Parent:=Self;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
@ -785,7 +787,8 @@ begin
|
|||||||
Name:='ListBox';
|
Name:='ListBox';
|
||||||
OnClick:=@ListBoxClick;
|
OnClick:=@ListBoxClick;
|
||||||
Align:=alLeft;
|
Align:=alLeft;
|
||||||
AnchorToNeighbour(akRight,6,AddButton);
|
BorderSpacing.Around := 6;
|
||||||
|
AnchorToNeighbour(akRight, 0, AddButton);
|
||||||
Parent:=Self;
|
Parent:=Self;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
Loading…
Reference in New Issue
Block a user