move control variable down for readability during debug

This commit is contained in:
Jeremy Wu 2021-02-01 06:08:05 +11:00
parent efdfd064ed
commit c395cc74b5

View file

@ -109,8 +109,6 @@ namespace Flow.Launcher.Infrastructure
if (fullStringToCompareWithoutCase[compareStringIndex] ==
queryWithoutCase[currentAcronymQueryIndex])
{
currentAcronymQueryIndex++;
if (!spaceMet)
{
char currentCompareChar = stringToCompare[compareStringIndex];
@ -126,6 +124,8 @@ namespace Flow.Launcher.Infrastructure
{
acronymMatchData.Add(compareStringIndex);
}
currentAcronymQueryIndex++;
}
else
{