summaryrefslogtreecommitdiff
path: root/src/gui/fpg_style.pas
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/fpg_style.pas')
-rw-r--r--src/gui/fpg_style.pas13
1 files changed, 12 insertions, 1 deletions
diff --git a/src/gui/fpg_style.pas b/src/gui/fpg_style.pas
index f6538a81..615ec397 100644
--- a/src/gui/fpg_style.pas
+++ b/src/gui/fpg_style.pas
@@ -294,7 +294,18 @@ begin
begin
r.SetRect(option.Rect.Left, option.Rect.Top, option.Rect.Width, option.Rect.Height);
InflateRect(r, -3, -3);
- Canvas.DrawFocusRect(r);
+
+ oldColor := Canvas.Color;
+ oldLineWidth := Canvas.LineWidth;
+ oldLineStyle := Canvas.LineStyle;
+
+ Canvas.SetColor(clText1);
+ Canvas.SetLineStyle(1, lsDot);
+ Canvas.DrawRectangle(r);
+
+ // restore previous settings
+ Canvas.SetColor(oldColor);
+ Canvas.SetLineStyle(oldLineWidth, oldLineStyle);
end;
end; { peFocusRectangle }