Skip to content

Commit

Permalink
long overdue bugfix, thanks @mcguirepatr
Browse files Browse the repository at this point in the history
  • Loading branch information
nocollier committed Jul 31, 2024
1 parent c8eeb9c commit 1ce1578
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ILAMB/Confrontation.py
Original file line number Diff line number Diff line change
Expand Up @@ -601,7 +601,7 @@ def determinePlotLimits(self):

# Determine plot limits and colormap
if opts["sym"]:
vabs = max(abs(limits[pname]["min"]), abs(limits[pname]["min"]))
vabs = max(abs(limits[pname]["min"]), abs(limits[pname]["max"]))
limits[pname]["min"] = -vabs
limits[pname]["max"] = vabs
if "shift" in pname:
Expand Down

0 comments on commit 1ce1578

Please sign in to comment.