Changeset View
Changeset View
Standalone View
Standalone View
release/scripts/startup/bl_ui/space_dopesheet.py
| Show First 20 Lines • Show All 447 Lines • ▼ Show 20 Lines | class DOPESHEET_MT_channel(Menu): | ||||
| bl_label = "Channel" | bl_label = "Channel" | ||||
| def draw(self, _context): | def draw(self, _context): | ||||
| layout = self.layout | layout = self.layout | ||||
| layout.operator_context = 'INVOKE_REGION_CHANNELS' | layout.operator_context = 'INVOKE_REGION_CHANNELS' | ||||
| layout.operator("anim.channels_delete") | layout.operator("anim.channels_delete") | ||||
| layout.separator() | layout.separator() | ||||
| layout.operator("anim.actiongroup_nest") | |||||
| layout.operator("anim.actiongroup_unnest") | |||||
| layout.separator() | |||||
| layout.operator("anim.channels_group") | layout.operator("anim.channels_group") | ||||
| layout.operator("anim.channels_ungroup") | layout.operator("anim.channels_ungroup") | ||||
| layout.separator() | layout.separator() | ||||
| layout.operator_menu_enum("anim.channels_setting_toggle", "type") | layout.operator_menu_enum("anim.channels_setting_toggle", "type") | ||||
| layout.operator_menu_enum("anim.channels_setting_enable", "type") | layout.operator_menu_enum("anim.channels_setting_enable", "type") | ||||
| layout.operator_menu_enum("anim.channels_setting_disable", "type") | layout.operator_menu_enum("anim.channels_setting_disable", "type") | ||||
| ▲ Show 20 Lines • Show All 327 Lines • Show Last 20 Lines | |||||