Skip to content

Commit

Permalink
Allow MouseInteraction.next to be None
Browse files Browse the repository at this point in the history
  • Loading branch information
astrofrog authored and maartenbreddels committed Mar 30, 2021
1 parent 45d78bd commit e6a1099
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bqplot_image_gl/interacts.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,6 @@ class MouseInteraction(Interaction):
.tag(sync=True, dimension='y', **widget_serialization)
cursor = Unicode('auto').tag(sync=True)
move_throttle = Int(50).tag(sync=True)
next = Instance(Interaction).tag(sync=True, **widget_serialization)
next = Instance(Interaction, allow_none=True).tag(sync=True, **widget_serialization)
events = List(Unicode, default_value=drag_events + mouse_events + keyboard_events,
allow_none=True).tag(sync=True)

0 comments on commit e6a1099

Please sign in to comment.