Skip to content

Commit

Permalink
Merge 5260f7a into 966ff0b
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Apr 29, 2019
2 parents 966ff0b + 5260f7a commit fdcf990
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion holoviews/plotting/bokeh/element.py
Expand Up @@ -1287,6 +1287,9 @@ def _update_glyphs(self, element, ranges, style):
elif not self.static_source:
self._update_datasource(source, data)

if not self.static_source:
self._update_datasource(source, data)


def update_frame(self, key, ranges=None, plot=None, element=None):
"""
Expand Down Expand Up @@ -1657,7 +1660,7 @@ def _get_colormapper(self, eldim, element, ranges, style, factors=None, colors=N
colormapper, opts = self._get_cmapper_opts(low, high, factors, nan_colors)

cmapper = self.handles.get(name)
if cmapper is not None:
if cmapper is not None and type(cmapper) is colormapper:
if cmapper.palette != palette:
cmapper.palette = palette
opts = {k: opt for k, opt in opts.items()
Expand Down

0 comments on commit fdcf990

Please sign in to comment.