diff options
author | graemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf> | 2008-11-06 15:16:15 +0000 |
---|---|---|
committer | graemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf> | 2008-11-06 15:16:15 +0000 |
commit | 947e2cb20052fc99f201858a3f0c7706c39589a1 (patch) | |
tree | 7db66f20f6a42dd87336902e064729e126966272 | |
parent | eaa4a7ef87e8018c00fad419490b333f8ab3bf9e (diff) | |
download | fpGUI-947e2cb20052fc99f201858a3f0c7706c39589a1.tar.xz |
* Minor fix in TabSheet bg color.
-rw-r--r-- | src/gui/fpg_tab.pas | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/fpg_tab.pas b/src/gui/fpg_tab.pas index 6d176b18..d656ad3a 100644 --- a/src/gui/fpg_tab.pas +++ b/src/gui/fpg_tab.pas @@ -445,7 +445,7 @@ begin if Mode = 2 then r.Height := r.Height - 1; - Canvas.SetColor(clButtonFace); + Canvas.SetColor(clWindowBackground); Canvas.FillRectangle(r.Left, r.Top, r.Width, r.Height-2); Canvas.SetColor(clHilite2); Canvas.DrawLine(r.Left, r.Bottom-2, r.Left, r.Top+2); |