Don't highlight if the input and output tab numbers are different
This commit is contained in:
parent
35d6c7d79e
commit
cbfde7ddb1
@ -378,6 +378,8 @@ class HighlighterWaiter {
|
||||
displayHighlights(pos, direction) {
|
||||
if (!pos) return;
|
||||
|
||||
if (this.manager.input.getActiveTab() !== this.manager.output.getActiveTab()) return;
|
||||
|
||||
const io = direction === "forward" ? "output" : "input";
|
||||
|
||||
document.getElementById(io + "-selection-info").innerHTML = this.selectionInfo(pos[0].start, pos[0].end);
|
||||
|
Loading…
Reference in New Issue
Block a user