Changeset View
Changeset View
Standalone View
Standalone View
release/scripts/startup/bl_ui/space_nla.py
| Show First 20 Lines • Show All 86 Lines • ▼ Show 20 Lines | def draw(self, context): | ||||
| st = context.space_data | st = context.space_data | ||||
| layout.prop(st, "show_region_ui") | layout.prop(st, "show_region_ui") | ||||
| layout.separator() | layout.separator() | ||||
| layout.prop(st, "use_realtime_update") | layout.prop(st, "use_realtime_update") | ||||
| layout.prop(context.scene, "show_subframe", text="Show Subframes") | |||||
| layout.prop(st, "show_seconds") | layout.prop(st, "show_seconds") | ||||
| layout.prop(st, "show_locked_time") | layout.prop(st, "show_locked_time") | ||||
| layout.prop(st, "show_strip_curves") | layout.prop(st, "show_strip_curves") | ||||
| layout.separator() | layout.separator() | ||||
| layout.prop(st, "show_markers") | layout.prop(st, "show_markers") | ||||
| layout.prop(st, "show_local_markers") | layout.prop(st, "show_local_markers") | ||||
| ▲ Show 20 Lines • Show All 248 Lines • Show Last 20 Lines | |||||