mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 03:07:04 +02:00
Remove obsolete bool return
because hiding is now delegated to MainWindow.xaml's OnDeactivated()
This commit is contained in:
@@ -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"
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user