mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Use ArgumentList
This commit is contained in:
parent
eb6d040180
commit
14ae012949
1 changed files with 5 additions and 1 deletions
|
|
@ -322,7 +322,11 @@ namespace Flow.Launcher.Plugin.Explorer
|
|||
{
|
||||
try
|
||||
{
|
||||
Process.Start(editorPath, '"' + record.FullPath + '"');
|
||||
Process.Start(new ProcessStartInfo()
|
||||
{
|
||||
FileName = editorPath,
|
||||
ArgumentList = { record.FullPath }
|
||||
});
|
||||
return true;
|
||||
}
|
||||
catch (Exception e)
|
||||
|
|
|
|||
Loading…
Reference in a new issue