From a4e8308e758732de3ea598045696623c78c52c68 Mon Sep 17 00:00:00 2001 From: Jeremy Ruston Date: Thu, 27 Feb 2025 12:48:07 +0000 Subject: [PATCH] Add comment --- core/modules/pluginswitcher.js | 1 + 1 file changed, 1 insertion(+) diff --git a/core/modules/pluginswitcher.js b/core/modules/pluginswitcher.js index 8d80032ab..f8b759e5a 100644 --- a/core/modules/pluginswitcher.js +++ b/core/modules/pluginswitcher.js @@ -61,6 +61,7 @@ PluginSwitcher.prototype.switchPlugins = function() { }; accumulatePlugin(selectedPluginTitle); var selectedPluginTiddler = this.wiki.getTiddler(selectedPluginTitle); + // Accumulate any other plugins of the same type with the same name this.wiki.eachTiddlerPlusShadows(function(tiddler,title) { if(tiddler.isPlugin() && tiddler.fields["plugin-type"] === self.pluginType && tiddler.fields.name === selectedPluginTiddler.fields.name) { accumulatePlugin(title);