mirror of
https://github.com/rizonesoft/Notepad3.git
synced 2026-06-14 21:09:05 +08:00
+ fix: canonical ini-file style section order for settings from scratch
This commit is contained in:
parent
aae99b4d6d
commit
fdca03e984
@ -1 +1 @@
|
||||
2633
|
||||
2634
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
<assemblyIdentity
|
||||
name="Notepad3"
|
||||
processorArchitecture="*"
|
||||
version="5.19.916.2633"
|
||||
version="5.19.916.2634"
|
||||
type="win32"
|
||||
/>
|
||||
<description>Notepad3 BETA</description>
|
||||
|
||||
@ -736,7 +736,7 @@ void Style_ToIniSection(bool bForceAll)
|
||||
SAVE_STYLE_IF_NOT_EQ_DEFAULT(Int, SelectDlgSizeY, s_cyStyleSelectDlg, STYLESELECTDLG_Y);
|
||||
|
||||
// create canonical order of lexer sections
|
||||
if (bForceAll) {
|
||||
if (bForceAll || Globals.bIniFileFromScratch) {
|
||||
for (int iLexer = 0; iLexer < COUNTOF(g_pLexArray); iLexer++)
|
||||
{
|
||||
IniSectionClear(g_pLexArray[iLexer]->pszName, true);
|
||||
|
||||
@ -8,7 +8,7 @@
|
||||
#define VERSION_MAJOR 5
|
||||
#define VERSION_MINOR 19
|
||||
#define VERSION_REV 916
|
||||
#define VERSION_BUILD 2633
|
||||
#define VERSION_BUILD 2634
|
||||
#define SCINTILLA_VER 420
|
||||
#define ONIGURUMA_REGEX_VER 6.9.3
|
||||
#define UCHARDET_VER 2018.09.27
|
||||
|
||||
Loading…
Reference in New Issue
Block a user