From 8a01d43e5a4ecc6a9d32403786676ae1e3671acb Mon Sep 17 00:00:00 2001 From: Lan Dam <ldam@passcal.nmt.edu> Date: Wed, 12 Apr 2023 14:09:34 -0600 Subject: [PATCH] fix plotting linesDots' markers not following setting in db --- sohstationviewer/view/plotting/plotting_widget/plotting.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sohstationviewer/view/plotting/plotting_widget/plotting.py b/sohstationviewer/view/plotting/plotting_widget/plotting.py index 48b57f970..1c09026ce 100644 --- a/sohstationviewer/view/plotting/plotting_widget/plotting.py +++ b/sohstationviewer/view/plotting/plotting_widget/plotting.py @@ -272,7 +272,8 @@ class Plotting: linestyle='-', linewidth=0.7, zorder=constants.Z_ORDER['LINE'], color=clr[l_color], - markerfacecolor=clr[d_color], + mfc=clr[d_color], + mec=clr[d_color], picker=True, pickradius=3) if linked_ax is None: ax.x = x -- GitLab