Skip to content

Commit

Permalink
Core: Use " - " to split name and tooltip
Browse files Browse the repository at this point in the history
  • Loading branch information
Tams3d committed Nov 27, 2024
1 parent 7f2f71a commit 5f9ee44
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ def custom_draw(self, context):
layout.label(text=group_name.split("^ ")[1])
continue

# Set group name after " ~ " as tooltip
entry = group_name.split(" ~ ")
# Set group name after " - " as tooltip
entry = group_name.split(" - ")
props = layout.operator(
NODE_OT_group_add.bl_idname,
text=entry[0],
Expand Down

0 comments on commit 5f9ee44

Please sign in to comment.