Skip to content

Commit eba0aa3

Browse files
committed
Fix bug in 3.8.3 where axes are joined rather join
1 parent 6d7ae73 commit eba0aa3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

proplot/axes/cartesian.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -576,7 +576,7 @@ def _sharex_limits(self, sharex):
576576
if ax1.get_autoscalex_on() and not ax2.get_autoscalex_on():
577577
ax1.set_xlim(ax2.get_xlim()) # non-default limits
578578
# Copy non-default locators and formatters
579-
self.get_shared_x_axes().join(self, sharex) # share limit/scale changes
579+
self.get_shared_x_axes().joined(self, sharex) # share limit/scale changes
580580
if sharex.xaxis.isDefault_majloc and not self.xaxis.isDefault_majloc:
581581
sharex.xaxis.set_major_locator(self.xaxis.get_major_locator())
582582
if sharex.xaxis.isDefault_minloc and not self.xaxis.isDefault_minloc:

0 commit comments

Comments
 (0)