We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41e829f commit 22f6ad7Copy full SHA for 22f6ad7
Flow.Launcher.Infrastructure/DoublePinAlphabet.cs
@@ -57,7 +57,7 @@ public bool CanBeTranslated(string stringToTranslate)
57
{
58
if (content[i] >= 0x3400 && content[i] <= 0x9FD5)
59
60
- string dp = _settings.ShouldUseDoublePin ? resultList[i] : ToDoublePin(resultList[i].ToLower());
+ string dp = _settings.ShouldUseDoublePin ? ToDoublePin(resultList[i].ToLower()) : resultList[i];
61
map.AddNewIndex(i, resultBuilder.Length, dp.Length + 1);
62
resultBuilder.Append(' ');
63
resultBuilder.Append(dp);
0 commit comments