diff options
author | Graeme Geldenhuys <graemeg@gmail.com> | 2014-10-23 00:32:40 +0100 |
---|---|---|
committer | Graeme Geldenhuys <graemeg@gmail.com> | 2014-10-23 00:32:40 +0100 |
commit | 24e6074d8cc773aa1096b4d536f021e299868bfe (patch) | |
tree | 937cbe4c3f46ad4a338e15af70ce89b183bc9850 /extras/contributed | |
parent | bc7d460356cb1d7602b1ec834b0bfaac80636e02 (diff) | |
download | fpGUI-24e6074d8cc773aa1096b4d536f021e299868bfe.tar.xz |
nicegrid: fixed the Alpha value of some colors
Diffstat (limited to 'extras/contributed')
-rw-r--r-- | extras/contributed/nicegrid/fpg_nicegrid.pas | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extras/contributed/nicegrid/fpg_nicegrid.pas b/extras/contributed/nicegrid/fpg_nicegrid.pas index 2a27f771..a65448fb 100644 --- a/extras/contributed/nicegrid/fpg_nicegrid.pas +++ b/extras/contributed/nicegrid/fpg_nicegrid.pas @@ -386,7 +386,7 @@ type property HeaderFontColor: TfpgColor read FHeaderFontColor write SetHeaderFontColor; property FooterFont: string read FFooterFont write SetFooterFont; property FooterFontColor: TfpgColor read FFooterFontColor write SetFooterFontColor; - property SelectionColor: TfpgColor read FSelectionColor write SetSelectionColor default $00CAFFFF; + property SelectionColor: TfpgColor read FSelectionColor write SetSelectionColor default $FFCAFFFF; property FitToWidth: Boolean read FFitToWidth write SetFitToWidth default False; property AutoColWidth: Boolean read FAutoColWidth write SetAutoColWidth default False; property ReadOnly: Boolean read FReadOnly write SetReadOnly default False; @@ -491,7 +491,7 @@ begin FHeaderLightColor := clHilite1; FHeaderDarkColor := clShadow1; FHeaderFont:='Arial-8'; - FSelectionColor := $00CAFFFF; + FSelectionColor := $FFCAFFFF; FFooterFont := 'Arial-8'; FooterFontColor := clRed; FDefRowHeight := 18; |