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
using the mouse/drag-and-drop, move the first frame to the another position
Expected : the moved frame should be selected
Actual : the new 'first' frame gets selected.
Some investigation :
We have a moved frame F, going from index i1 to i2.
After the mouseup releasing F, the currentFrame is set to the new index of F, which is i2 At the next call of the render loop, all UIs will redraw accordingly.
However on Firefox a click event is also fired after the mouseup event, which triggers another call to setCurrentFrame. This one is based on the data-attribute of the event target. Since the UI has most likely not had time to redraw yet, F's data-attribute is still i1.
Could be a bug/limitation of jquery's sortable util.
The text was updated successfully, but these errors were encountered:
Steps to reproduce :
Expected : the moved frame should be selected
Actual : the new 'first' frame gets selected.
Some investigation :
We have a moved frame F, going from index i1 to i2.
After the mouseup releasing F, the currentFrame is set to the new index of F, which is i2 At the next call of the render loop, all UIs will redraw accordingly.
However on Firefox a click event is also fired after the mouseup event, which triggers another call to setCurrentFrame. This one is based on the data-attribute of the event target. Since the UI has most likely not had time to redraw yet, F's data-attribute is still i1.
Could be a bug/limitation of jquery's sortable util.
The text was updated successfully, but these errors were encountered: