From 276609a481f30544d295c1152dc7c219c353a2cf Mon Sep 17 00:00:00 2001 From: Mike Kryjak Date: Thu, 16 Feb 2023 12:24:36 +0000 Subject: [PATCH] bugfix: pcolormesh plot was missing norm --- xbout/plotting/plotfuncs.py | 1 + 1 file changed, 1 insertion(+) diff --git a/xbout/plotting/plotfuncs.py b/xbout/plotting/plotfuncs.py index 7fe182c7..5ac30c85 100644 --- a/xbout/plotting/plotfuncs.py +++ b/xbout/plotting/plotfuncs.py @@ -280,6 +280,7 @@ def plot2d_wrapper( add_colorbar=False, add_labels=add_label, cmap=cmap, + norm=norm, **kwargs, ) for region, add_label in zip(da_regions.values(), add_labels)