summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docview/src/SettingsUnit.pas4
1 files changed, 2 insertions, 2 deletions
diff --git a/docview/src/SettingsUnit.pas b/docview/src/SettingsUnit.pas
index 6b49aee1..43083709 100644
--- a/docview/src/SettingsUnit.pas
+++ b/docview/src/SettingsUnit.pas
@@ -84,7 +84,7 @@ type
FixedFontDesc: TfpgString;
Fonts: array[ 0..NumFontSettings - 1 ] of TfpgFont;
FixedFontSubstitution: boolean;
- FixedFontSubstitutes: string;
+ FixedFontSubstitutes: string; // semi-colon seperated list of INF fonts eg: 'Courier 10x12;Mono 8x10'
IndexStyle: TIndexStyle;
SmoothScrolling: boolean;
UseOriginalDialogs: boolean;
@@ -223,7 +223,7 @@ begin
end;
FixedFontSubstitution := ReadBool( FontsSection, 'FixedFontSubstitution', true );
- FixedFontSubstitutes := ReadString( FontsSection, 'FixedFontSubstitutes', DefaultTopicFixedFont );
+ FixedFontSubstitutes := ReadString( FontsSection, 'FixedFontSubstitutes', 'Courier 18x12' );
// Index style
SettingString := ReadString( GeneralSection, 'IndexStyle', 'Full' );