Skip to content
Snippets Groups Projects
Commit 41b0065a authored by Fabian Heinrich's avatar Fabian Heinrich
Browse files

Fix polygon for displaying items in list

parent 6cb370b5
No related branches found
No related tags found
No related merge requests found
Pipeline #46498 passed
...@@ -540,7 +540,7 @@ class Visualizer: ...@@ -540,7 +540,7 @@ class Visualizer:
) )
elif "content_list" in item and item["content_list"]: elif "content_list" in item and item["content_list"]:
triangle_offsets = create_polygon( triangle_offsets = create_polygon(
len(item["content_list"]), np.array([0.10]) len(item["content_list"]), np.array([0, 10])
) )
scale = 1 if len(item["content_list"]) == 1 else 0.6 scale = 1 if len(item["content_list"]) == 1 else 0.6
for idx, o in enumerate(item["content_list"]): for idx, o in enumerate(item["content_list"]):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment