Skip to content

Commit 4f57102

Browse files
committed
Fix linestyles in corner plots
1 parent d9e3bd7 commit 4f57102

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

coolest/api/plotting.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -881,7 +881,7 @@ def _prepare_getdist_plot(self, lw, lw_cont=None, lw_margin=None):
881881
lw_margin = lw + 2
882882
line_args = [{'ls': ls, 'lw': lw, 'color': c} for ls, c in zip(self.linestyles, self.colors)]
883883
lw_conts = [lw_cont]*self.num_models
884-
ls_conts = ['-']*self.num_models
884+
ls_conts = self.linestyles
885885
legend_labels = copy.deepcopy(self.coolest_names)
886886
colors = copy.deepcopy(self.colors)
887887
if self._add_margin_samples:

0 commit comments

Comments
 (0)