Skip to content

Commit 8c4fbd6

Browse files
committed
Don't fuse on mouse
1 parent 2a6d937 commit 8c4fbd6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/cursor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ module.exports.Component = registerComponent('cursor', {
397397
}
398398

399399
// Begin fuse if necessary.
400-
if (data.fuseTimeout === 0 || !data.fuse || data.rayOrigin === 'xrselect') { return; }
400+
if (data.fuseTimeout === 0 || !data.fuse || data.rayOrigin === 'xrselect' || data.rayOrigin === 'mouse') { return; }
401401
cursorEl.addState(STATES.FUSING);
402402
this.twoWayEmit(EVENTS.FUSING);
403403
this.fuseTimeout = setTimeout(function fuse () {

0 commit comments

Comments
 (0)