Skip to content

Commit

Permalink
fix: Fix visibility of markers when colors=None
Browse files Browse the repository at this point in the history
  • Loading branch information
adigitoleo committed Dec 4, 2023
1 parent 407dba5 commit 60a45bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pydrex/visualisation.py
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ def alignment(
)
_colors.append(colors[i])
else:
lines = ax.plot(strains, θ_cpo, marker, alpha=0.33, label=label)
lines = ax.plot(strains, θ_cpo, marker, alpha=0.6, label=label)
_colors.append(lines[0].get_color())
if err is not None:
ax.fill_between(
Expand Down

0 comments on commit 60a45bd

Please sign in to comment.