8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d028f87 + 12ae18f commit 6af9d4fCopy full SHA for 6af9d4f
lib/matplotlib/lines.py
@@ -717,10 +717,8 @@ def draw(self, renderer):
717
i0, = self._x_filled.searchsorted([x0], 'left')
718
i1, = self._x_filled.searchsorted([x1], 'right')
719
subslice = slice(max(i0 - 1, 0), i1 + 1)
720
- # Don't remake the Path unless it will be sufficiently smaller.
721
- if subslice.start > 100 or len(self._x) - subslice.stop > 100:
722
- self.ind_offset = subslice.start
723
- self._transform_path(subslice)
+ self.ind_offset = subslice.start
+ self._transform_path(subslice)
724
725
transf_path = self._get_transformed_path()
726
0 commit comments