Skip to content

Commit fa31263

Browse files
author
SlavaRa
authored
Fix typo... (#153)
1 parent 6f02531 commit fa31263

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

QuickNavigate/Helpers/FormHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ static T GetPluginUI<T>(string pluginGUID)
158158
public static string Transcriptor([NotNull] string s)
159159
{
160160
if (s.Trim().Length == 0) return s;
161-
var result = new string(s.ToCharArray().Select(c => ruToEn[c]).ToArray());
161+
var result = new string(s.ToCharArray().Select(c => ruToEn.ContainsKey(c) ? ruToEn[c] : c).ToArray());
162162
return result;
163163
}
164164
}

0 commit comments

Comments
 (0)