Skip to content

Commit 3596a77

Browse files
committed
Fix the rest of my mistakes
1 parent ff2f0c3 commit 3596a77

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Plugins/Flow.Launcher.Plugin.Shell/Main.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ private ProcessStartInfo PrepareProcessStartInfo(string command, bool runAsAdmin
281281
}
282282
case Shell.TerminalPWSH:
283283
{
284-
info.filename = "wt.exe";
284+
info.FileName = "wt.exe";
285285
info.ArgumentList.Add("pwsh");
286286
if (_settings.LeaveShellOpen)
287287
{
@@ -293,7 +293,7 @@ private ProcessStartInfo PrepareProcessStartInfo(string command, bool runAsAdmin
293293
}
294294
case Shell.TerminalCMD:
295295
{
296-
info.filename = "wt.exe";
296+
info.FileName = "wt.exe";
297297
info.ArgumentList.Add("cmd");
298298
if (_settings.LeaveShellOpen)
299299
{

Plugins/Flow.Launcher.Plugin.Shell/ShellSetting.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
Content="{DynamicResource flowlauncher_plugin_cmd_always_run_as_administrator}" />
4444
<ComboBox
4545
x:Name="ShellComboBox"
46-
Grid.Row="6"
46+
Grid.Row="4"
4747
Margin="10,5,5,5"
4848
HorizontalAlignment="Left">
4949
<ComboBoxItem>CMD</ComboBoxItem>

0 commit comments

Comments
 (0)