Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork7.9k
Colorbar redo again!#20501
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Colorbar redo again!#20501
Changes fromall commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,3 @@ | ||
Colorbar lines no longer clipped | ||
================================ | ||
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -2380,6 +2380,8 @@ def _update_patch_limits(self, patch): | ||
return | ||
patch_trf = patch.get_transform() | ||
updatex, updatey = patch_trf.contains_branch_seperately(self.transData) | ||
if not (updatex or updatey): | ||
return | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. Calling the transform below blows up needlessly because it is called, and then does nothing.... | ||
if self.name != "rectilinear": | ||
# As in _update_line_limits, but for axvspan. | ||
if updatex and patch_trf == self.get_yaxis_transform(): | ||
Uh oh!
There was an error while loading.Please reload this page.