From ff2f0c375cd90ff721739cdc68e406b4ecdae4d3 Mon Sep 17 00:00:00 2001 From: Azakidev Date: Tue, 4 Feb 2025 23:39:29 +0100 Subject: [PATCH] Fix typos --- Plugins/Flow.Launcher.Plugin.Shell/Main.cs | 4 ++-- Plugins/Flow.Launcher.Plugin.Shell/ShellSetting.xaml.cs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Plugins/Flow.Launcher.Plugin.Shell/Main.cs b/Plugins/Flow.Launcher.Plugin.Shell/Main.cs index a192b8900..60c8ba1a8 100644 --- a/Plugins/Flow.Launcher.Plugin.Shell/Main.cs +++ b/Plugins/Flow.Launcher.Plugin.Shell/Main.cs @@ -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) { diff --git a/Plugins/Flow.Launcher.Plugin.Shell/ShellSetting.xaml.cs b/Plugins/Flow.Launcher.Plugin.Shell/ShellSetting.xaml.cs index e981f8b74..eaac8731a 100644 --- a/Plugins/Flow.Launcher.Plugin.Shell/ShellSetting.xaml.cs +++ b/Plugins/Flow.Launcher.Plugin.Shell/ShellSetting.xaml.cs @@ -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 };