diff options
author | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2010-04-28 12:38:14 +0200 |
---|---|---|
committer | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2010-04-28 12:38:14 +0200 |
commit | 28254920084aa09732646efacc7a97f67decb2a9 (patch) | |
tree | 51210a52915236cb12c4aa6de6e203e16e2b3e73 /src | |
parent | 676891df1ff1462cd1d8e5793e2911653201a40b (diff) | |
download | fpGUI-28254920084aa09732646efacc7a97f67decb2a9.tar.xz |
Listbox now updated with 4 new predefined colors.
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/fpg_listbox.pas | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gui/fpg_listbox.pas b/src/gui/fpg_listbox.pas index 3b668ded..175f0055 100644 --- a/src/gui/fpg_listbox.pas +++ b/src/gui/fpg_listbox.pas @@ -995,6 +995,10 @@ begin FItems.Add(TColorItem.Create('clUnset', clUnset)); FItems.Add(TColorItem.Create('clMenuText', clMenuText)); FItems.Add(TColorItem.Create('clMenuDisabled', clMenuDisabled)); + FItems.Add(TColorItem.Create('clGridSelection', clGridSelection)); + FItems.Add(TColorItem.Create('clGridSelectionText', clGridSelectionText)); + FItems.Add(TColorItem.Create('clGridInactiveSel', clGridInactiveSel)); + FItems.Add(TColorItem.Create('clGridInactiveSelText', clGridInactiveSelText)); end; cpWebColors: begin |