Changeset View
Changeset View
Standalone View
Standalone View
release/scripts/startup/bl_ui/space_dopesheet.py
| Show First 20 Lines • Show All 341 Lines • ▼ Show 20 Lines | def draw(self, context): | ||||
| layout.prop(st, "use_realtime_update") | layout.prop(st, "use_realtime_update") | ||||
| # Sliders are always shown in the Shape Key Editor regardless of this setting. | # Sliders are always shown in the Shape Key Editor regardless of this setting. | ||||
| col = layout.column() | col = layout.column() | ||||
| col.active = context.space_data.mode != 'SHAPEKEY' | col.active = context.space_data.mode != 'SHAPEKEY' | ||||
| col.prop(st, "show_sliders") | col.prop(st, "show_sliders") | ||||
| if bpy.app.version < (2, 93): | |||||
| layout.operator("anim.show_group_colors_deprecated", icon='CHECKBOX_HLT') | |||||
| layout.prop(st, "show_interpolation") | layout.prop(st, "show_interpolation") | ||||
| layout.prop(st, "show_extremes") | layout.prop(st, "show_extremes") | ||||
| layout.prop(st, "use_auto_merge_keyframes") | layout.prop(st, "use_auto_merge_keyframes") | ||||
| layout.separator() | layout.separator() | ||||
| layout.prop(st, "show_markers") | layout.prop(st, "show_markers") | ||||
| layout.separator() | layout.separator() | ||||
| ▲ Show 20 Lines • Show All 414 Lines • Show Last 20 Lines | |||||