File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Flow.Launcher.Infrastructure/UserSettings
Flow.Launcher/SettingPages/ViewModels Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -29,11 +29,11 @@ public static bool PortableDataLocationInUse()
29
29
public static string LogDirectory => Path . Combine ( DataDirectory ( ) , Constant . Logs ) ;
30
30
31
31
public static readonly string CacheDirectory = Path . Combine ( DataDirectory ( ) , Constant . Cache ) ;
32
- public static readonly string SettingsDirectorty = Path . Combine ( DataDirectory ( ) , Constant . Settings ) ;
32
+ public static readonly string SettingsDirectory = Path . Combine ( DataDirectory ( ) , Constant . Settings ) ;
33
33
public static readonly string PluginsDirectory = Path . Combine ( DataDirectory ( ) , Constant . Plugins ) ;
34
34
public static readonly string ThemesDirectory = Path . Combine ( DataDirectory ( ) , Constant . Themes ) ;
35
35
36
- public static readonly string PluginSettingsDirectory = Path . Combine ( SettingsDirectorty , Constant . Plugins ) ;
36
+ public static readonly string PluginSettingsDirectory = Path . Combine ( SettingsDirectory , Constant . Plugins ) ;
37
37
public static readonly string PluginCacheDirectory = Path . Combine ( DataDirectory ( ) , Constant . Cache , Constant . Plugins ) ;
38
38
39
39
public const string PythonEnvironmentName = "Python" ;
Original file line number Diff line number Diff line change @@ -77,13 +77,13 @@ private void AskClearLogFolderConfirmation()
77
77
[ RelayCommand ]
78
78
private void OpenSettingsFolder ( )
79
79
{
80
- PluginManager . API . OpenDirectory ( DataLocation . SettingsDirectorty ) ;
80
+ PluginManager . API . OpenDirectory ( DataLocation . SettingsDirectory ) ;
81
81
}
82
82
83
83
[ RelayCommand ]
84
84
private void OpenParentOfSettingsFolder ( object parameter )
85
85
{
86
- string settingsFolderPath = Path . Combine ( DataLocation . SettingsDirectorty ) ;
86
+ string settingsFolderPath = Path . Combine ( DataLocation . SettingsDirectory ) ;
87
87
string parentFolderPath = Path . GetDirectoryName ( settingsFolderPath ) ;
88
88
PluginManager . API . OpenDirectory ( parentFolderPath ) ;
89
89
}
You can’t perform that action at this time.
0 commit comments