Merge pull request 'fix/custom-text-highlight' (#1677) from fix/custom-text-highlight into release/v9.2.0

This commit is contained in:
Ilya Kirillov
2025-11-16 15:21:38 +00:00
23 changed files with 1691 additions and 167 deletions

View File

@ -652,8 +652,8 @@
return this.onPluginEvent2(name, data, undefined, isExclusive);
},
onPluginEvent2 : function(name, data, guids, isExclusive, isOnlyCheck)
onPluginEvent2 : function(name, data, guids, isExclusive, isOnlyCheck, excludedGuids)
{
let needsGuids = [];
for (let guid in this.runnedPluginsMap)
@ -661,6 +661,9 @@
if (guids && !guids[guid])
continue;
if (excludedGuids && excludedGuids[guid])
continue;
if (guid === this.currentPluginEvent)
continue;