Merge pull request #3387 from Jack251970/restore_kill_process_action

Back to original action for UX
This commit is contained in:
Jack Ye 2025-03-26 21:45:09 +08:00 committed by GitHub
commit 7c009d4c6b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -154,8 +154,9 @@ namespace Flow.Launcher.Plugin.ProcessKiller
Action = (c) =>
{
processHelper.TryKill(_context, p);
// Re-query to refresh process list
_context.API.ReQuery();
return false;
return true;
}
});
}
@ -180,8 +181,9 @@ namespace Flow.Launcher.Plugin.ProcessKiller
{
processHelper.TryKill(_context, p.Process);
}
// Re-query to refresh process list
_context.API.ReQuery();
return false;
return true;
}
});
}