Changeset View
Changeset View
Standalone View
Standalone View
release/scripts/startup/bl_ui/space_outliner.py
| Show First 20 Lines • Show All 383 Lines • ▼ Show 20 Lines | def draw(self, context): | ||||
| sub.active = space.use_filter_object | sub.active = space.use_filter_object | ||||
| row = sub.row() | row = sub.row() | ||||
| row.label(icon='BLANK1') | row.label(icon='BLANK1') | ||||
| row.prop(space, "use_filter_object_content", text="Object Contents") | row.prop(space, "use_filter_object_content", text="Object Contents") | ||||
| row = sub.row() | row = sub.row() | ||||
| row.label(icon='BLANK1') | row.label(icon='BLANK1') | ||||
| row.prop(space, "use_filter_children", text="Object Children") | row.prop(space, "use_filter_children", text="Object Children") | ||||
| row = sub.row() | |||||
| row.label(icon='BLANK1') | |||||
| row.prop(space, "use_filter_row_children", text="Row Children") | |||||
| if bpy.data.meshes: | if bpy.data.meshes: | ||||
| row = sub.row() | row = sub.row() | ||||
| row.label(icon='MESH_DATA') | row.label(icon='MESH_DATA') | ||||
| row.prop(space, "use_filter_object_mesh", text="Meshes") | row.prop(space, "use_filter_object_mesh", text="Meshes") | ||||
| if bpy.data.armatures: | if bpy.data.armatures: | ||||
| row = sub.row() | row = sub.row() | ||||
| row.label(icon='ARMATURE_DATA') | row.label(icon='ARMATURE_DATA') | ||||
| ▲ Show 20 Lines • Show All 47 Lines • Show Last 20 Lines | |||||