Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion seaborn/matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ def plot(self, ax, cax, kws):

# setting vmin/vmax in addition to norm is deprecated
# so avoid setting if norm is set
if "norm" not in kws:
if "norm" not in kws or not kws["norm"]:
kws.setdefault("vmin", self.vmin)
kws.setdefault("vmax", self.vmax)

Expand Down