mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Fix typos
This commit is contained in:
parent
f708ad9ffd
commit
ff2f0c375c
2 changed files with 4 additions and 4 deletions
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -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
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue