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 e3261a8 commit e31928eCopy full SHA for e31928e
src/content_scripts/common/hints.js
@@ -345,7 +345,7 @@ div.hint-scrollable {
345
}
346
347
function resetHints() {
348
- if (!document.documentElement.contains(hintsHost)) {
+ if (Mode.getCurrent() !== self || !document.documentElement.contains(hintsHost)) {
349
return;
350
351
var start = new Date().getTime();
@@ -442,6 +442,9 @@ div.hint-scrollable {
442
443
initSKFunctionListener("hints", {
444
scrollStarted: () => {
445
446
+ return;
447
+ }
448
setSanitizedContent(holder, "");
449
holder.remove();
450
prefix = "";
0 commit comments