Skip to content

Commit

Permalink
Fix ConnectionPatch to correctly account coordsB argument. Closes mat…
Browse files Browse the repository at this point in the history
  • Loading branch information
leejjoon committed Sep 26, 2013
1 parent 799cbe6 commit febea19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/matplotlib/patches.py
Expand Up @@ -4272,7 +4272,7 @@ def get_path_in_displaycoord(self):
posA = self._get_xy(x, y, self.coords1, self.axesA)

x, y = self.xy2
posB = self._get_xy(x, y, self.coords1, self.axesB)
posB = self._get_xy(x, y, self.coords2, self.axesB)

_path = self.get_connectionstyle()(posA, posB,
patchA=self.patchA,
Expand Down

0 comments on commit febea19

Please sign in to comment.