IDE: ObjectInspector: Fixed OI don't show "default" in list of font names. Issue #31958

git-svn-id: trunk@55220 -
This commit is contained in:
michl 2017-06-04 21:16:33 +00:00
parent 34b48ac437
commit d3f428a7d5

View File

@ -443,6 +443,7 @@ procedure TFontNamePropertyEditor.GetValues(Proc: TGetStrProc);
var
I: Integer;
begin
Proc('default');
for I := 0 to Screen.Fonts.Count -1 do
Proc(Screen.Fonts[I]);
end;