Fixed page-breaking bug when scaleScrolling queue while a timetip is open
This commit is contained in:
parent
d9d39e1563
commit
441108c9cb
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue