rename method

This commit is contained in:
Jeremy 2022-12-02 08:53:57 +11:00
parent e1e89514d4
commit e28906de9e
2 changed files with 2 additions and 2 deletions

View file

@ -162,7 +162,7 @@ namespace Flow.Launcher.Core.ExternalPlugins.Environments
/// need to update each plugin's executable path so user will not be prompted again to reinstall the environments.
/// </summary>
/// <param name="settings"></param>
public static void PreStartPluginFilePathCorrection(Settings settings)
public static void PreStartPluginExecutablePathUpdate(Settings settings)
{
if (DataLocation.PortableDataLocationInUse())
{

View file

@ -62,7 +62,7 @@ namespace Flow.Launcher
_settingsVM = new SettingWindowViewModel(_updater, _portable);
_settings = _settingsVM.Settings;
AbstractPluginEnvironment.PreStartPluginFilePathCorrection(_settings);
AbstractPluginEnvironment.PreStartPluginExecutablePathUpdate(_settings);
_alphabet.Initialize(_settings);
_stringMatcher = new StringMatcher(_alphabet);