Skip to content

Commit 4e56cb4

Browse files
authored
Merge pull request #4203 from Flow-Launcher/shell_path
Fix ShellPath directory for shell path selection
2 parents 8d4e03b + 382a77d commit 4e56cb4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Plugins/Flow.Launcher.Plugin.Explorer/ViewModels/SettingsViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,7 @@ private void OpenFolderEditorPath()
532532
[RelayCommand]
533533
private void OpenShellPath()
534534
{
535-
var path = PromptUserSelectPath(ResultType.File, Settings.EditorPath != null ? Path.GetDirectoryName(Settings.EditorPath) : null);
535+
var path = PromptUserSelectPath(ResultType.File, Settings.ShellPath != null ? Path.GetDirectoryName(Settings.ShellPath) : null);
536536
if (path is null)
537537
return;
538538

0 commit comments

Comments
 (0)