Skip to content

Commit

Permalink
Ensure toolbar=None does not disable tools (#3074)
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Oct 25, 2018
1 parent 57d5b1f commit 188c62e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions holoviews/plotting/bokeh/element.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,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 @@ -314,7 +314,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 188c62e

Please sign in to comment.