mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
move control variable down for readability during debug
This commit is contained in:
parent
efdfd064ed
commit
c395cc74b5
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue