summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/gui/fpg_tree.pas6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/fpg_tree.pas b/src/gui/fpg_tree.pas
index 578cc133..be18e2a0 100644
--- a/src/gui/fpg_tree.pas
+++ b/src/gui/fpg_tree.pas
@@ -1078,7 +1078,7 @@ begin
Result := 0
else
begin
- Result := FFont.TextWidth(ANode.Text) + 2;
+ Result := FFont.TextWidth(ANode.Text) + 4;
if ShowImages and ((ImageList <> nil) or (StateImageList <> nil)) then
begin
if ImageList <> nil then
@@ -1518,7 +1518,7 @@ begin
// inherited HandlePaint;
Canvas.ClearClipRect;
- Canvas.Clear(FBackgroundColor);
+ Canvas.Clear(BackgroundColor);
// Limit painting in the UI Designer
if csDesigning in ComponentState then
@@ -1646,7 +1646,7 @@ begin
Canvas.FillRectangle(w + imgx - FXOffset, ACenterPos - (GetNodeHeight div 2), GetNodeWidth(h) - imgx, GetNodeHeight);
end;
- Canvas.DrawString(w + imgx - FXOffset, ACenterPos - (GetNodeHeight div 2), h.text);
+ Canvas.DrawString(w + imgx - FXOffset + 2 { small spacing }, ACenterPos - (GetNodeHeight div 2), h.text);
Canvas.SetTextColor(h.ParentTextColor);
Canvas.SetLineStyle(1, FTreeLineStyle);