diff --git a/sohstationviewer/view/plotting/plotting_widget/plotting.py b/sohstationviewer/view/plotting/plotting_widget/plotting.py
index 838f49808248fbbdd57096767d5c318b9c14eec0..a88e64e56fab510fd87183048881fe990d5d38b9 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'])