Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
MNT : make sure the correct ignore behavior is used
  • Loading branch information
tacaswell committed Jan 20, 2015
commit 349d6da1acc47fc5167764c3c7645daa1e148173
3 changes: 2 additions & 1 deletion lib/matplotlib/collections.py
Original file line number Diff line number Diff line change
Expand Up @@ -1687,7 +1687,8 @@ def __init__(self, meshWidth, meshHeight, coordinates,

self._bbox = transforms.Bbox.unit()
self._bbox.update_from_data_xy(coordinates.reshape(
((meshWidth + 1) * (meshHeight + 1), 2)))
((meshWidth + 1) * (meshHeight + 1), 2)),
ignore=True)

# By converting to floats now, we can avoid that on every draw.
self._coordinates = self._coordinates.reshape(
Expand Down