[Symbian Installation File] Fix tabulation level in else if conditions.

This commit is contained in:
2023-10-08 13:42:43 +01:00
parent 4289a1f7ce
commit 3887d3ce81

View File

@@ -516,10 +516,8 @@ public sealed partial class Symbian
break;
case FileRecordType.ElseIf:
conditionLevel--;
tabulationChars = new char[conditionLevel];
for(var i = 0; i < conditionLevel; i++)
tabulationChars = new char[conditionLevel - 1];
for(var i = 0; i < conditionLevel - 1; i++)
tabulationChars[i] = '\t';
tabulation = new string(tabulationChars);