Fix open with editor for files of which path contains blank

This commit is contained in:
Vic 2022-12-13 19:02:27 +08:00
parent 6dd34b93d9
commit 0227b9591c

View file

@ -322,7 +322,7 @@ namespace Flow.Launcher.Plugin.Explorer
{
try
{
Process.Start(editorPath, record.FullPath);
Process.Start(editorPath, '"' + record.FullPath + '"');
return true;
}
catch (Exception e)