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.
1 parent 10ba924 commit 8952108Copy full SHA for 8952108
ultraplot/axes/geo.py
@@ -2788,6 +2788,9 @@ def _update_major_gridlines(
2788
allow_xy=True,
2789
include_false=True,
2790
)
2791
+ if not sides and lonarray is not None and latarray is not None:
2792
+ # Preserve legacy behavior by calling the toggle even for no-op arrays.
2793
+ sides = {side: None for side in _CARTOPY_LABEL_SIDES}
2794
if sides:
2795
self._toggle_gridliner_labels(**sides)
2796
self._set_gridliner_adapter("major", self._build_gridliner_adapter("major"))
0 commit comments