diff --git a/distrib/License.txt b/distrib/License.txt index 86e5ac95a..58055c1cf 100644 --- a/distrib/License.txt +++ b/distrib/License.txt @@ -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: diff --git a/distrib/Notepad3.ini b/distrib/Notepad3.ini index 3a5f01638..ea9752cf9 100644 Binary files a/distrib/Notepad3.ini and b/distrib/Notepad3.ini differ diff --git a/src/Notepad3.c b/src/Notepad3.c index dd0ba9bef..8fd474239 100644 --- a/src/Notepad3.c +++ b/src/Notepad3.c @@ -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;