From 821d421f33d8bc2026dfe552eb53b72327572805 Mon Sep 17 00:00:00 2001 From: cailean Date: Thu, 27 Nov 2025 23:20:33 +0000 Subject: [PATCH] hide show outline removed --- js/Player.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/Player.js b/js/Player.js index 451774b..ce4929f 100644 --- a/js/Player.js +++ b/js/Player.js @@ -873,10 +873,10 @@ export class Player { // If the hovered item has changed, update outlines if (previouslyHoveredItem !== this.currentIntItem) { if (previouslyHoveredItem) { - previouslyHoveredItem.hideOutline(); + //previouslyHoveredItem.hideOutline(); } if (this.currentIntItem) { - this.currentIntItem.showOutline(); + //this.currentIntItem.showOutline(); } } }