We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a493ed6 commit b6be321Copy full SHA for b6be321
Flow.Launcher.Core/Plugin/PluginManager.cs
@@ -521,12 +521,12 @@ public static bool IsHomePlugin(string id)
521
522
public static IList<QuickSwitchExplorerPair> GetQuickSwitchExplorers()
523
{
524
- return _quickSwitchExplorerPlugins;
+ return _quickSwitchExplorerPlugins.Where(p => !PluginModified(p.Metadata.ID)).ToList();
525
}
526
527
public static IList<QuickSwitchDialogPair> GetQuickSwitchDialogs()
528
529
- return _quickSwitchDialogPlugins;
+ return _quickSwitchDialogPlugins.Where(p => !PluginModified(p.Metadata.ID)).ToList();
530
531
532
public static bool ActionKeywordRegistered(string actionKeyword)
0 commit comments