diff --git a/holoviews/plotting/bokeh/tiles.py b/holoviews/plotting/bokeh/tiles.py index 07adaad8aa..4cb80186c1 100644 --- a/holoviews/plotting/bokeh/tiles.py +++ b/holoviews/plotting/bokeh/tiles.py @@ -2,7 +2,7 @@ import numpy as np -from bokeh.models import WMTSTileSource, BBoxTileSource, QUADKEYTileSource, SaveTool +from bokeh.models import WMTSTileSource, BBoxTileSource, QUADKEYTileSource from ...core import util from ...core.options import SkipRendering @@ -66,7 +66,4 @@ def _init_glyph(self, plot, mapping, properties): level = properties.pop('level', 'glyph') renderer = plot.add_tile(tile_source, level=level) renderer.alpha = properties.get('alpha', 1) - - # Remove save tool - plot.tools = [t for t in plot.tools if not isinstance(t, SaveTool)] return renderer, tile_source