File tree Expand file tree Collapse file tree 5 files changed +6
-6
lines changed
Flow.Launcher.Core/Plugin
Flow.Launcher.Plugin/Interfaces
Flow.Launcher.Plugin.Explorer
Flow.Launcher.Plugin.PluginsManager
Flow.Launcher.Plugin.Program Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -497,7 +497,7 @@ public static void UpdatePluginHotkeyInfoTranslations()
497497 {
498498 foreach ( var plugin in GetHotkeyPlugins ( ) )
499499 {
500- var newHotkeys = ( ( IPluginHotkey ) plugin . Plugin ) . GetPuginHotkeys ( ) ;
500+ var newHotkeys = ( ( IPluginHotkey ) plugin . Plugin ) . GetPluginHotkeys ( ) ;
501501 if ( _pluginHotkeyInfo . TryGetValue ( plugin , out var oldHotkeys ) )
502502 {
503503 foreach ( var newHotkey in newHotkeys )
@@ -524,7 +524,7 @@ private static void InitializePluginHotkeyInfo()
524524 {
525525 foreach ( var plugin in GetHotkeyPlugins ( ) )
526526 {
527- var hotkeys = ( ( IPluginHotkey ) plugin . Plugin ) . GetPuginHotkeys ( ) ;
527+ var hotkeys = ( ( IPluginHotkey ) plugin . Plugin ) . GetPluginHotkeys ( ) ;
528528 _pluginHotkeyInfo . Add ( plugin , hotkeys ) ;
529529 }
530530 }
Original file line number Diff line number Diff line change @@ -11,6 +11,6 @@ public interface IPluginHotkey : IFeatures
1111 /// Get the list of plugin hotkeys which will be registered in the settings page.
1212 /// </summary>
1313 /// <returns></returns>
14- List < BasePluginHotkey > GetPuginHotkeys ( ) ;
14+ List < BasePluginHotkey > GetPluginHotkeys ( ) ;
1515 }
1616}
Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ private void FillQuickAccessLinkNames()
112112 }
113113 }
114114
115- public List < BasePluginHotkey > GetPuginHotkeys ( )
115+ public List < BasePluginHotkey > GetPluginHotkeys ( )
116116 {
117117 return new List < BasePluginHotkey >
118118 {
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ public string GetTranslatedPluginDescription()
7070 return Context . API . GetTranslation ( "plugin_pluginsmanager_plugin_description" ) ;
7171 }
7272
73- public List < BasePluginHotkey > GetPuginHotkeys ( )
73+ public List < BasePluginHotkey > GetPluginHotkeys ( )
7474 {
7575 return new List < BasePluginHotkey >
7676 {
Original file line number Diff line number Diff line change @@ -460,7 +460,7 @@ public void Dispose()
460460 Win32 . Dispose ( ) ;
461461 }
462462
463- public List < BasePluginHotkey > GetPuginHotkeys ( )
463+ public List < BasePluginHotkey > GetPluginHotkeys ( )
464464 {
465465 return new List < BasePluginHotkey >
466466 {
You can’t perform that action at this time.
0 commit comments