Skip to content

Commit

Permalink
Use text color of integer data type for AUTO_INCREMENT flag in table …
Browse files Browse the repository at this point in the history
  • Loading branch information
ansgarbecker committed Dec 18, 2018
1 parent fe9c92a commit f24d524
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/table_editor.pas
Original file line number Diff line number Diff line change
Expand Up @@ -1159,7 +1159,7 @@ procedure TfrmTableEditor.listColumnsPaintText(Sender: TBaseVirtualTree;
cdtCurTS, cdtCurTSUpdateTS:
TextColor := DatatypeCategories[dtcTemporal].Color;
cdtAutoInc:
TextColor := clNavy;
TextColor := DatatypeCategories[dtcInteger].Color;
end;
end;
TargetCanvas.Font.Color := TextColor;
Expand Down

0 comments on commit f24d524

Please sign in to comment.