From 441108c9cb133cb27327d034647e71d6eabc4e5b Mon Sep 17 00:00:00 2001 From: rainbow napkin Date: Wed, 9 Apr 2025 04:24:55 -0400 Subject: [PATCH] Fixed page-breaking bug when scaleScrolling queue while a timetip is open --- www/js/channel/panels/queuePanel/queuePanel.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/www/js/channel/panels/queuePanel/queuePanel.js b/www/js/channel/panels/queuePanel/queuePanel.js index a7a15da..18d5840 100644 --- a/www/js/channel/panels/queuePanel/queuePanel.js +++ b/www/js/channel/panels/queuePanel/queuePanel.js @@ -327,6 +327,10 @@ class queuePanel extends panelObj{ scaleScroll(event){ if(event.ctrlKey){ + //I could sit here and work out why timetips break everything on scalescroll + //Then again you wouldn't want phantom timetips surviving the re-scale so you might as well get two birds stoned at once :P + this.killTimetips(); + //Capture inverse scroll wheel direction const scrollDirection = event.wheelDeltaY / Math.abs(event.wheelDeltaY) * -1;