From b82e8b3442679fff9ff3eaf0a1b57aca99e88d2a Mon Sep 17 00:00:00 2001 From: ldam <ldam@passcal.nmt.edu> Date: Tue, 19 Sep 2023 14:40:57 -0600 Subject: [PATCH] correct function name --- sohstationviewer/view/plotting/plotting_widget/plotting.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sohstationviewer/view/plotting/plotting_widget/plotting.py b/sohstationviewer/view/plotting/plotting_widget/plotting.py index 838f49808..a88e64e56 100644 --- a/sohstationviewer/view/plotting/plotting_widget/plotting.py +++ b/sohstationviewer/view/plotting/plotting_widget/plotting.py @@ -6,7 +6,7 @@ from sohstationviewer.controller.plotting_data import get_masspos_value_colors from sohstationviewer.view.util.color import clr from sohstationviewer.view.plotting.plotting_widget.plotting_helper import ( - get_colors_for_abs_y_from_value_colors + get_colors_sizes_for_abs_y_from_value_colors ) from sohstationviewer.conf import constants @@ -386,7 +386,7 @@ class Plotting: color=self.parent.display_color['sub_basic'], picker=True, pickradius=3, zorder=constants.Z_ORDER['LINE'])[0] - colors, sizes = get_colors_for_abs_y_from_value_colors( + colors, sizes = get_colors_sizes_for_abs_y_from_value_colors( y, value_colors) ax.scatter(x, y, marker='s', c=colors, s=sizes, zorder=constants.Z_ORDER['DOT']) -- GitLab