Handle results from SetCurrentTheme

This commit is contained in:
Jack251970 2025-04-08 16:49:29 +08:00
parent dd210ad419
commit a3c7be9559

View file

@ -76,8 +76,10 @@ namespace Flow.Launcher.Plugin.Sys
Score = score,
Action = c =>
{
_context.API.SetCurrentTheme(theme);
_context.API.ReQuery();
if (_context.API.SetCurrentTheme(theme))
{
_context.API.ReQuery();
}
return false;
}
};