Changeset 419
- Timestamp:
- Feb 25, 2019, 9:00:50 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/NewView/SettingsUnit.pas
r311 r419 66 66 67 67 DefaultTopicFontName = 'Helv'; 68 DefaultTopicFontNameDBCS = 'Helv Combined'; 68 69 DefaultTopicFontSize = 8; 69 70 … … 319 320 320 321 // Fonts 321 NormalFont := Screen.GetFontFromPointSize( 322 ReadString( FontsSection, 'NormalFont', DefaultTopicFontName ), 323 ReadInteger( FontsSection, 'NormalFontSize', DefaultTopicFontSize ) ); 322 if Application.DBCSSystem then 323 NormalFont := Screen.GetFontFromPointSize( 324 ReadString( FontsSection, 'NormalFont', DefaultTopicFontNameDBCS ), 325 ReadInteger( FontsSection, 'NormalFontSize', DefaultTopicFontSize ) ) 326 else 327 NormalFont := Screen.GetFontFromPointSize( 328 ReadString( FontsSection, 'NormalFont', DefaultTopicFontName ), 329 ReadInteger( FontsSection, 'NormalFontSize', DefaultTopicFontSize ) ); 324 330 if NormalFont = nil then 325 331 NormalFont := Screen.DefaultFont;
Note:
See TracChangeset
for help on using the changeset viewer.