summaryrefslogtreecommitdiff
path: root/docview/components/richtext
diff options
context:
space:
mode:
authorGraeme Geldenhuys <graeme@mastermaths.co.za>2011-08-11 11:14:45 +0200
committerGraeme Geldenhuys <graeme@mastermaths.co.za>2011-08-11 11:14:45 +0200
commitea16d11aa2d48d574b6f766ae3cc2e9070796cec (patch)
treed86f7a61717fc4541688801e0ec0539ffe653a69 /docview/components/richtext
parent21a02e34f145d9166cad3a24a4faa6e7e74824de (diff)
downloadfpGUI-ea16d11aa2d48d574b6f766ae3cc2e9070796cec.tar.xz
corrected the bottom/right corner color for RichView.
It's the rectangle between the two scrollbars.
Diffstat (limited to 'docview/components/richtext')
-rw-r--r--docview/components/richtext/RichTextView.pas2
1 files changed, 1 insertions, 1 deletions
diff --git a/docview/components/richtext/RichTextView.pas b/docview/components/richtext/RichTextView.pas
index 03d7a7e3..5db8cbdf 100644
--- a/docview/components/richtext/RichTextView.pas
+++ b/docview/components/richtext/RichTextView.pas
@@ -717,7 +717,7 @@ ProfileEvent('DEBUG: TRichTextView.HandlePaint 5');
CornerRect.Top := Height - 2 - FScrollBarWidth;
CornerRect.Width := FScrollBarWidth;
CornerRect.Height := FScrollBarWidth;
- Canvas.Color := clButtonFace;
+ Canvas.Color := clWindowBackground;
Canvas.FillRectangle(CornerRect);
end;
ProfileEvent('DEBUG: TRichTextView.HandlePaint <<<');