Fix : Show 'Exit group' menu entry also for non group nodes. #106643

Merged
Martijn Versteegh merged 1 commits from Baardaap/blender:show-exit-group-entry into main 2023-04-07 13:09:43 +02:00
1 changed files with 2 additions and 2 deletions

View File

@ -555,8 +555,8 @@ class NODE_MT_context_menu(Menu):
layout.operator("node.group_edit", text="Edit").exit = False
layout.operator("node.group_ungroup", text="Ungroup")
if is_nested:
layout.operator("node.tree_path_parent", text="Exit Group", icon='FILE_PARENT')
if is_nested:
layout.operator("node.tree_path_parent", text="Exit Group", icon='FILE_PARENT')
layout.separator()