Skip to content

Commit b6be321

Browse files
committed
Check plugin modified state
1 parent a493ed6 commit b6be321

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Flow.Launcher.Core/Plugin/PluginManager.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -521,12 +521,12 @@ public static bool IsHomePlugin(string id)
521521

522522
public static IList<QuickSwitchExplorerPair> GetQuickSwitchExplorers()
523523
{
524-
return _quickSwitchExplorerPlugins;
524+
return _quickSwitchExplorerPlugins.Where(p => !PluginModified(p.Metadata.ID)).ToList();
525525
}
526526

527527
public static IList<QuickSwitchDialogPair> GetQuickSwitchDialogs()
528528
{
529-
return _quickSwitchDialogPlugins;
529+
return _quickSwitchDialogPlugins.Where(p => !PluginModified(p.Metadata.ID)).ToList();
530530
}
531531

532532
public static bool ActionKeywordRegistered(string actionKeyword)

0 commit comments

Comments
 (0)