Merge pull request #134 from RaiKoHoff/Changes_1018+

Changes for NP3s default (distrib) settings (.ini)
This commit is contained in:
Derick Payne 2017-10-18 09:58:42 +02:00 committed by GitHub
commit 2026e8f01f
3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
Notepad3 and MiniPath Copyright © 2008-2016 Rizonesoft, All rights reserved.
Notepad3 and MiniPath Copyright © 2008-2016 Rizonesoft, All rights reserved.
https://rizonesoft.com
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

Binary file not shown.

View File

@ -6021,10 +6021,10 @@ void LoadSettings()
dwFileCheckInverval = IniSectionGetInt(pIniSection,L"FileCheckInverval",2000);
dwAutoReloadTimeout = IniSectionGetInt(pIniSection,L"AutoReloadTimeout",2000);
iSciDirectWriteTech = IniSectionGetInt(pIniSection,L"SciDirectWriteTech",-1);
iSciDirectWriteTech = IniSectionGetInt(pIniSection,L"SciDirectWriteTech",1);
iSciDirectWriteTech = max(min(iSciDirectWriteTech,3),-1);
iSciFontQuality = IniSectionGetInt(pIniSection,L"SciFontQuality",0);
iSciFontQuality = IniSectionGetInt(pIniSection,L"SciFontQuality",3);
iSciFontQuality = max(min(iSciFontQuality,3),0);
iMarkOccurrencesCount = -1;