diff options
author | Graeme Geldenhuys <graemeg@gmail.com> | 2009-10-29 19:34:58 +0200 |
---|---|---|
committer | Graeme Geldenhuys <graemeg@gmail.com> | 2009-10-29 19:34:58 +0200 |
commit | 51a0da3d3a3b9523084466968948075a566736f4 (patch) | |
tree | cc3d3cdceb7cde4007e6e1496a070576c78ee19c /src | |
parent | 1db4861b07b388817f5b500c9969fe68c44477e3 (diff) | |
download | fpGUI-51a0da3d3a3b9523084466968948075a566736f4.tar.xz |
Standardized on more accessible fonts like 'Sans' instead of 'Aria'.
All font references have been replaced with constants so now it's easier
to update in the future.
Signed-off-by: Graeme Geldenhuys <graemeg@gmail.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/SettingsUnit.pas | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/SettingsUnit.pas b/src/SettingsUnit.pas index d5d45d00..f6b34bc4 100644 --- a/src/SettingsUnit.pas +++ b/src/SettingsUnit.pas @@ -15,6 +15,7 @@ Uses Classes ,fpg_base ,fpg_main + ,CanvasFontManager ; Const @@ -69,8 +70,8 @@ Const ApplicationFontIndex = 0; NumFontSettings = 1; - DefaultTopicFont = 'Arial-10'; - DefaultTopicFixedFont = 'Courier New-10'; + DefaultTopicFont = DefaultTopicFont + '-' + DefaultTopicFontSize; + DefaultTopicFixedFont = DefaultTopicFixedFont + '-10' + DefaultTopicFixedFontSize; Type |