diff --git a/Plugins/Flow.Launcher.Plugin.ProcessKiller/Main.cs b/Plugins/Flow.Launcher.Plugin.ProcessKiller/Main.cs index 9ab1502a2c7..4f5d1becdd9 100644 --- a/Plugins/Flow.Launcher.Plugin.ProcessKiller/Main.cs +++ b/Plugins/Flow.Launcher.Plugin.ProcessKiller/Main.cs @@ -154,8 +154,9 @@ private List CreateResultsFromQuery(Query query) Action = (c) => { processHelper.TryKill(_context, p); + // Re-query to refresh process list _context.API.ReQuery(); - return false; + return true; } }); } @@ -180,8 +181,9 @@ private List CreateResultsFromQuery(Query query) { processHelper.TryKill(_context, p.Process); } + // Re-query to refresh process list _context.API.ReQuery(); - return false; + return true; } }); }