mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-11 23:39:09 +02:00
LCL: Use TreeLinePenStyle in all places where line drawing is done, part of issue #12470
git-svn-id: trunk@17110 -
This commit is contained in:
parent
6b61f8046b
commit
55b0e6d247
@ -4217,7 +4217,7 @@ var
|
||||
with Canvas do begin
|
||||
// draw virtual tree line
|
||||
Pen.Color:=TreeLineColor;
|
||||
Pen.Style:=psDot;
|
||||
Pen.Style:=TreeLinePenStyle;
|
||||
x:=Node.DisplayExpandSignRight+Indent div 2;
|
||||
MoveTo(x,NodeRect.Bottom-3);
|
||||
LineTo(x,NodeRect.Bottom-2);
|
||||
@ -4240,7 +4240,7 @@ var
|
||||
with Canvas do begin
|
||||
// draw virtual tree line
|
||||
Pen.Color:=TreeLineColor;
|
||||
Pen.Style:=psDot;
|
||||
Pen.Style:=TreeLinePenStyle;
|
||||
x:=Node.DisplayExpandSignLeft+Indent div 2;
|
||||
MoveTo(x,NodeRect.Top+1);
|
||||
x:=Node.DisplayExpandSignRight;
|
||||
@ -4262,7 +4262,7 @@ var
|
||||
with Canvas do begin
|
||||
// draw virtual tree line
|
||||
Pen.Color:=TreeLineColor;
|
||||
Pen.Style:=psDot;
|
||||
Pen.Style:=TreeLinePenStyle;
|
||||
x:=Node.DisplayExpandSignLeft+Indent div 2;
|
||||
MoveTo(x,NodeRect.Bottom-3);
|
||||
LineTo(x,NodeRect.Bottom-2);
|
||||
|
Loading…
Reference in New Issue
Block a user