mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Merge pull request #4203 from Flow-Launcher/shell_path
Fix ShellPath directory for shell path selection
This commit is contained in:
commit
4e56cb4e74
1 changed files with 1 additions and 1 deletions
|
|
@ -532,7 +532,7 @@ namespace Flow.Launcher.Plugin.Explorer.ViewModels
|
||||||
[RelayCommand]
|
[RelayCommand]
|
||||||
private void OpenShellPath()
|
private void OpenShellPath()
|
||||||
{
|
{
|
||||||
var path = PromptUserSelectPath(ResultType.File, Settings.EditorPath != null ? Path.GetDirectoryName(Settings.EditorPath) : null);
|
var path = PromptUserSelectPath(ResultType.File, Settings.ShellPath != null ? Path.GetDirectoryName(Settings.ShellPath) : null);
|
||||||
if (path is null)
|
if (path is null)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue