We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6317d0e commit 8c56c0bCopy full SHA for 8c56c0b
Flow.Launcher.Infrastructure/PinyinAlphabet.cs
@@ -27,14 +27,18 @@ public PinyinAlphabet()
27
{
28
switch (e.PropertyName)
29
30
- case nameof(Settings.ShouldUsePinyin):
31
- Reload();
+ case nameof (Settings.ShouldUsePinyin):
+ if (_settings.ShouldUsePinyin)
32
+ {
33
+ Reload();
34
+ }
35
break;
36
case nameof(Settings.UseDoublePinyin):
- break;
37
case nameof(Settings.DoublePinyinSchema):
38
+ if (_settings.UseDoublePinyin)
39
40
41
42
43
}
44
};
0 commit comments