mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Fix open with editor for files of which path contains blank
This commit is contained in:
parent
6dd34b93d9
commit
0227b9591c
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue