Fix typos

This commit is contained in:
Azakidev 2025-02-04 23:39:29 +01:00
parent f708ad9ffd
commit ff2f0c375c
2 changed files with 4 additions and 4 deletions

View file

@ -281,7 +281,7 @@ namespace Flow.Launcher.Plugin.Shell
}
case Shell.TerminalPWSH:
{
info.filename = "wt.exe"
info.filename = "wt.exe";
info.ArgumentList.Add("pwsh");
if (_settings.LeaveShellOpen)
{
@ -293,7 +293,7 @@ namespace Flow.Launcher.Plugin.Shell
}
case Shell.TerminalCMD:
{
info.filename = "wt.exe"
info.filename = "wt.exe";
info.ArgumentList.Add("cmd");
if (_settings.LeaveShellOpen)
{

View file

@ -91,8 +91,8 @@ namespace Flow.Launcher.Plugin.Shell
Shell.Cmd => 0,
Shell.Powershell => 1,
Shell.Pwsh => 2,
Shell.TerminalPWSH = 3,
Shell.TerminalCMD = 4,
Shell.TerminalPWSH => 3,
Shell.TerminalCMD => 4,
_ => ShellComboBox.Items.Count - 1
};