GPv3: UI: Rename buttons in layer group context menu

In a recent module meeting
https://devtalk.blender.org/t/2024-05-21-grease-pencil-module-meeting/34755
it was proposed to to make "Delete Group" delete everything
(the group with children) and use "Ungroup"
for just deleting the group while keeping the children.

This implements the suggested change that was agreed upon.
This commit is contained in:
Falk David
2024-05-23 12:49:34 +02:00
parent 1ebc4a2328
commit 02d5d573fb
@@ -200,8 +200,8 @@ class GREASE_PENCIL_MT_group_context_menu(Menu):
def draw(self, context):
layout = self.layout
layout.operator("grease_pencil.layer_group_remove", text="Delete Group").keep_children = True
layout.operator("grease_pencil.layer_group_remove", text="Delete Group and children").keep_children = False
layout.operator("grease_pencil.layer_group_remove", text="Delete Group").keep_children = False
layout.operator("grease_pencil.layer_group_remove", text="Ungroup").keep_children = True
class DATA_PT_grease_pencil_layers(DataButtonsPanel, Panel):