Skip to content

Commit d1be135

Browse files
committed
fix alignment, no logic changes
1 parent b52ef23 commit d1be135

File tree

1 file changed

+8
-3
lines changed
  • Plugins/Flow.Launcher.Plugin.Program/Programs

1 file changed

+8
-3
lines changed

Plugins/Flow.Launcher.Plugin.Program/Programs/UWP.cs

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -311,9 +311,14 @@ public List<Result> ContextMenus(IPublicAPI api)
311311

312312
Action = _ =>
313313
{
314-
Main.StartProcess(Process.Start, new ProcessStartInfo(
315-
!string.IsNullOrEmpty(Main._settings.CustomizedExplorer) ? Main._settings.CustomizedExplorer:Settings.Explorer,
316-
Main._settings.CustomizedArgs.Replace("%s",$"\"{Package.Location}\"").Trim()));
314+
Main.StartProcess(Process.Start,
315+
new ProcessStartInfo(
316+
!string.IsNullOrEmpty(Main._settings.CustomizedExplorer)
317+
? Main._settings.CustomizedExplorer
318+
: Settings.Explorer,
319+
Main._settings.CustomizedArgs
320+
.Replace("%s",$"\"{Package.Location}\"")
321+
.Trim()));
317322

318323
return true;
319324
},

0 commit comments

Comments
 (0)