Remove obsolete bool return

because hiding is now delegated to MainWindow.xaml's OnDeactivated()
This commit is contained in:
Jeremy Wu
2019-12-16 21:01:45 +11:00
parent bf33c82b19
commit 9d031c1600
3 changed files with 14 additions and 11 deletions

View File

@@ -319,11 +319,14 @@ namespace Wox.Plugin.Program.Programs
new Result
{
Title = api.GetTranslation("wox_plugin_program_open_containing_folder"),
Action = _ =>
{
var hide = Main.StartProcess(Process.Start, new ProcessStartInfo(Package.Location));
return hide;
Main.StartProcess(Process.Start, new ProcessStartInfo(Package.Location));
return true;
},
IcoPath = "Images/folder.png"
}
};