diff options
-rw-r--r-- | src/gui/fpg_basegrid.pas | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/fpg_basegrid.pas b/src/gui/fpg_basegrid.pas index 80eb9a5b..9ad2b59f 100644 --- a/src/gui/fpg_basegrid.pas +++ b/src/gui/fpg_basegrid.pas @@ -616,13 +616,13 @@ begin begin if FFocused then begin - Canvas.SetColor(clSelection); - Canvas.SetTextColor(clSelectionText); + Canvas.SetColor(clGridSelection); + Canvas.SetTextColor(clGridSelectionText); end else begin - Canvas.SetColor(clInactiveSel); - Canvas.SetTextColor(clInactiveSelText); + Canvas.SetColor(clGridInactiveSel); + Canvas.SetTextColor(clGridInactiveSelText); end; end else |