Skip to content

Commit

Permalink
Auto stash before merge of "develop" and "origin/develop"
Browse files Browse the repository at this point in the history
support changes due to newer matplotlib version
  • Loading branch information
mayofaulkner committed Nov 28, 2023
1 parent 94fdbda commit 822f183
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion brainbox/plot_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -568,7 +568,7 @@ def plot_probe(data, ax=None, show_cbar=True, make_pretty=True, fig_kwargs=dict(
im = NonUniformImage(ax, interpolation='nearest', cmap=data['cmap'])
im.set_clim(data['clim'][0], data['clim'][1])
im.set_data(x, y, dat.T)
ax.images.append(im)
ax.add_image(im)

ax.set_xlim(data['xlim'][0], data['xlim'][1])
ax.set_ylim(data['ylim'][0], data['ylim'][1])
Expand Down

0 comments on commit 822f183

Please sign in to comment.