Skip to content

Commit

Permalink
Ensure toolbar=None does not disable tools
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Oct 10, 2018
1 parent 9b840e6 commit 4d030a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions holoviews/plotting/bokeh/element.py
Expand Up @@ -105,7 +105,7 @@ class ElementPlot(BokehPlot, GenericElementPlot):

toolbar = param.ObjectSelector(default='right',
objects=["above", "below",
"left", "right", None],
"left", "right", "disable", None],
doc="""
The toolbar location, must be one of 'above', 'below',
'left', 'right', None.""")
Expand Down Expand Up @@ -324,7 +324,7 @@ def _init_plot(self, key, element, plots, ranges=None):
else:
title = ''

if self.toolbar:
if self.toolbar != 'disable':
tools = self._init_tools(element)
properties['tools'] = tools
properties['toolbar_location'] = self.toolbar
Expand Down

0 comments on commit 4d030a2

Please sign in to comment.