From e28906de9e0d15b85f4d219b0ad38507722a38ea Mon Sep 17 00:00:00 2001 From: Jeremy Date: Fri, 2 Dec 2022 08:53:57 +1100 Subject: [PATCH] rename method --- .../ExternalPlugins/Environments/AbstractPluginEnvironment.cs | 2 +- Flow.Launcher/App.xaml.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Flow.Launcher.Core/ExternalPlugins/Environments/AbstractPluginEnvironment.cs b/Flow.Launcher.Core/ExternalPlugins/Environments/AbstractPluginEnvironment.cs index 21b16c899..50bdf6df9 100644 --- a/Flow.Launcher.Core/ExternalPlugins/Environments/AbstractPluginEnvironment.cs +++ b/Flow.Launcher.Core/ExternalPlugins/Environments/AbstractPluginEnvironment.cs @@ -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. /// /// - public static void PreStartPluginFilePathCorrection(Settings settings) + public static void PreStartPluginExecutablePathUpdate(Settings settings) { if (DataLocation.PortableDataLocationInUse()) { diff --git a/Flow.Launcher/App.xaml.cs b/Flow.Launcher/App.xaml.cs index dee023599..0857fb55b 100644 --- a/Flow.Launcher/App.xaml.cs +++ b/Flow.Launcher/App.xaml.cs @@ -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);