Skip to content

Commit

Permalink
Only apply round boundary to polar projs
Browse files Browse the repository at this point in the history
  • Loading branch information
lukelbd committed Jan 20, 2022
1 parent a21f7d0 commit 0b0431b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion proplot/axes/geo.py
Original file line number Diff line number Diff line change
Expand Up @@ -859,7 +859,7 @@ def _update_boundary(self, round=None):
Update the map boundary path.
"""
round = _not_none(round, rc.find('geo.round', context=True))
if round is None:
if round is None or not isinstance(self.projection, self._proj_polar):
pass
elif round:
self._is_round = True
Expand Down

0 comments on commit 0b0431b

Please sign in to comment.