Closed jessegreenberg closed 1 year ago
While checking on https://github.com/phetsims/joist/issues/769, I noticed that the forwarded press to bring circuit elements out of the toolbox is using DragListener.down (scenery-internal) instead of DragListener.press(). Using press will resolve https://github.com/phetsims/joist/issues/769#issuecomment-1072430805. Ill commit a change for review.
DragListener.down
DragListener.press()
press
@samreid would you like to review this change?
Code review looks good and behavior (including during pan/zoom) looks good, thanks, closing.
While checking on https://github.com/phetsims/joist/issues/769, I noticed that the forwarded press to bring circuit elements out of the toolbox is using
DragListener.down
(scenery-internal) instead ofDragListener.press()
. Usingpress
will resolve https://github.com/phetsims/joist/issues/769#issuecomment-1072430805. Ill commit a change for review.