Skip to content

Commit

Permalink
Updated skip conditions for DrawCallback
Browse files Browse the repository at this point in the history
  • Loading branch information
jlstevens committed May 15, 2017
1 parent 4357700 commit 3d315c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion holoviews/plotting/bokeh/callbacks.py
Expand Up @@ -541,7 +541,7 @@ class PointerYCallback(PointerXYCallback):
class DrawCallback(PointerXYCallback):
on_events = ['pan', 'panstart', 'panend']
models = ['plot', 'pan', 'box_zoom']
skip = ['pan.attributes.active', 'box_zoom.attributes.active']
skip = ['pan && pan.attributes.active', 'box_zoom && box_zoom.attributes.active']
attributes = {'x': 'cb_obj.x', 'y': 'cb_obj.y', 'event': 'cb_obj.event_name'}

def __init__(self, *args, **kwargs):
Expand Down

0 comments on commit 3d315c6

Please sign in to comment.