You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Found this yesterday and fixed by adding a if not null case in the switch (line 46811 I presume)
switch(state) {
case states.DRAGGING:
if (selectedObject !== null) {
selectedObject.clickReleased();
} else {
switchState(states.SELECTED);
}
switchState(states.SELECTED);
break;
The text was updated successfully, but these errors were encountered:
Found this yesterday and fixed by adding a if not null case in the switch (line 46811 I presume)
switch(state) {
case states.DRAGGING:
if (selectedObject !== null) {
selectedObject.clickReleased();
} else {
switchState(states.SELECTED);
}
switchState(states.SELECTED);
break;
The text was updated successfully, but these errors were encountered: