mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Fix logic
This commit is contained in:
parent
6317d0eec6
commit
8c56c0bddf
1 changed files with 9 additions and 5 deletions
|
|
@ -27,14 +27,18 @@ namespace Flow.Launcher.Infrastructure
|
|||
{
|
||||
switch (e.PropertyName)
|
||||
{
|
||||
case nameof(Settings.ShouldUsePinyin):
|
||||
Reload();
|
||||
case nameof (Settings.ShouldUsePinyin):
|
||||
if (_settings.ShouldUsePinyin)
|
||||
{
|
||||
Reload();
|
||||
}
|
||||
break;
|
||||
case nameof(Settings.UseDoublePinyin):
|
||||
Reload();
|
||||
break;
|
||||
case nameof(Settings.DoublePinyinSchema):
|
||||
Reload();
|
||||
if (_settings.UseDoublePinyin)
|
||||
{
|
||||
Reload();
|
||||
}
|
||||
break;
|
||||
}
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue