Skip to content

Commit

Permalink
Don't emit warnings when toolbar is disabled (#5691)
Browse files Browse the repository at this point in the history
  • Loading branch information
hoxbro committed Apr 24, 2023
1 parent 38a4350 commit c1803f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion holoviews/plotting/bokeh/element.py
Expand Up @@ -569,7 +569,7 @@ def _plot_properties(self, key, element):

def _set_active_tools(self, plot):
"Activates the list of active tools"
if plot is None:
if plot is None or self.toolbar == "disable":
return

if self.active_tools is None:
Expand Down

0 comments on commit c1803f8

Please sign in to comment.