Changeset View
Changeset View
Standalone View
Standalone View
release/scripts/startup/bl_ui/space_properties.py
| Show First 20 Lines • Show All 68 Lines • ▼ Show 20 Lines | def draw(self, context): | ||||
| ) | ) | ||||
| else: | else: | ||||
| layout.prop_tabs_enum(view, "context", icon_only=True) | layout.prop_tabs_enum(view, "context", icon_only=True) | ||||
| class PROPERTIES_PT_options(Panel): | class PROPERTIES_PT_options(Panel): | ||||
| bl_space_type = 'PROPERTIES' | bl_space_type = 'PROPERTIES' | ||||
| bl_region_type = 'HEADER' | bl_region_type = 'HEADER' | ||||
| bl_label = 'Options' | bl_label = 'Show options for the properties editor' | ||||
| def draw(self, context): | def draw(self, context): | ||||
| layout = self.layout | layout = self.layout | ||||
| space = context.space_data | space = context.space_data | ||||
| col = layout.column() | col = layout.column() | ||||
| col.label(text="Sync with Outliner") | col.label(text="Sync with Outliner") | ||||
| Show All 13 Lines | |||||