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()
2929 public static string LogDirectory => Path . Combine ( DataDirectory ( ) , Constant . Logs ) ;
3030
3131 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 ) ;
3333 public static readonly string PluginsDirectory = Path . Combine ( DataDirectory ( ) , Constant . Plugins ) ;
3434 public static readonly string ThemesDirectory = Path . Combine ( DataDirectory ( ) , Constant . Themes ) ;
3535
36- public static readonly string PluginSettingsDirectory = Path . Combine ( SettingsDirectorty , Constant . Plugins ) ;
36+ public static readonly string PluginSettingsDirectory = Path . Combine ( SettingsDirectory , Constant . Plugins ) ;
3737 public static readonly string PluginCacheDirectory = Path . Combine ( DataDirectory ( ) , Constant . Cache , Constant . Plugins ) ;
3838
3939 public const string PythonEnvironmentName = "Python" ;
Original file line number Diff line number Diff line change @@ -77,13 +77,13 @@ private void AskClearLogFolderConfirmation()
7777 [ RelayCommand ]
7878 private void OpenSettingsFolder ( )
7979 {
80- PluginManager . API . OpenDirectory ( DataLocation . SettingsDirectorty ) ;
80+ PluginManager . API . OpenDirectory ( DataLocation . SettingsDirectory ) ;
8181 }
8282
8383 [ RelayCommand ]
8484 private void OpenParentOfSettingsFolder ( object parameter )
8585 {
86- string settingsFolderPath = Path . Combine ( DataLocation . SettingsDirectorty ) ;
86+ string settingsFolderPath = Path . Combine ( DataLocation . SettingsDirectory ) ;
8787 string parentFolderPath = Path . GetDirectoryName ( settingsFolderPath ) ;
8888 PluginManager . API . OpenDirectory ( parentFolderPath ) ;
8989 }
You can’t perform that action at this time.
0 commit comments