Changeset 175 for trunk/Packages/Common/UTheme.pas
- Timestamp:
- Feb 26, 2018, 10:08:13 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Packages/Common/UTheme.pas
r174 r175 138 138 Control := (Component as TControl); 139 139 if (Control is TEdit) or (Control is TSpinEdit) or (Control is TComboBox) and 140 (Control is TMemo) or (Control is TListView) or (Control is T StringGrid) or140 (Control is TMemo) or (Control is TListView) or (Control is TCustomDrawGrid) or 141 141 (Control is TCheckBox) then begin 142 142 Control.Color := FTheme.ColorWindow; … … 145 145 Control.Color := FTheme.ColorControl; 146 146 Control.Font.Color := FTheme.ColorControlText; 147 end; 148 149 if Control is TCustomDrawGrid then begin 150 (Control as TCustomDrawGrid).Editor.Color := FTheme.ColorWindow; 151 (Control as TCustomDrawGrid).Editor.Font.Color := FTheme.ColorWindowText; 147 152 end; 148 153 end;
Note:
See TracChangeset
for help on using the changeset viewer.