Skip to content

Commit

Permalink
Fix box-select support for Bokeh>=3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Jul 24, 2023
1 parent 6e59170 commit 8165225
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion holoviews/plotting/bokeh/callbacks.py
Original file line number Diff line number Diff line change
Expand Up @@ -727,7 +727,7 @@ class BoundsCallback(Callback):
models = ['plot']
on_events = ['selectiongeometry']

skip_events = [lambda event: event.geometry['type'] != 'quad',
skip_events = [lambda event: event.geometry['type'] != 'rect',
lambda event: not event.final]

def _process_msg(self, msg):
Expand Down

0 comments on commit 8165225

Please sign in to comment.