Skip to content
Snippets Groups Projects
Commit 3ca58370 authored by Kien Le's avatar Kien Le
Browse files

Fix the problem

parent d552c7de
No related branches found
No related tags found
1 merge request!202Plotting multiColorDots channels break the program when they have an underscore color
Pipeline #3114 passed with stage
in 4 minutes and 39 seconds
......@@ -79,6 +79,8 @@ class Plotting:
# flatten point_list to be x
x = [item for row in points_list for item in row]
for points, c in zip(points_list, colors):
if c == '_':
continue
ax.plot(points, len(points) * [0], linestyle="",
marker='s', markersize=2,
zorder=constants.Z_ORDER['DOT'],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment