Fix logic

This commit is contained in:
Jack251970 2025-07-14 19:30:16 +08:00
parent 6317d0eec6
commit 8c56c0bddf

View file

@ -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;
}
};