Changeset View
Changeset View
Standalone View
Standalone View
release/scripts/startup/bl_ui/space_userpref.py
| Show First 20 Lines • Show All 889 Lines • ▼ Show 20 Lines | def draw_props(self, context, layout): | ||||
| flow = layout.grid_flow(row_major=False, columns=0, even_columns=True, even_rows=False, align=False) | flow = layout.grid_flow(row_major=False, columns=0, even_columns=True, even_rows=False, align=False) | ||||
| flow.prop(ui, "icon_scene") | flow.prop(ui, "icon_scene") | ||||
| flow.prop(ui, "icon_collection") | flow.prop(ui, "icon_collection") | ||||
| flow.prop(ui, "icon_object") | flow.prop(ui, "icon_object") | ||||
| flow.prop(ui, "icon_object_data") | flow.prop(ui, "icon_object_data") | ||||
| flow.prop(ui, "icon_modifier") | flow.prop(ui, "icon_modifier") | ||||
| flow.prop(ui, "icon_shading") | flow.prop(ui, "icon_shading") | ||||
| flow.prop(ui, "icon_border_intensity") | |||||
| class USERPREF_PT_theme_text_style(PreferencePanel, Panel): | class USERPREF_PT_theme_text_style(PreferencePanel, Panel): | ||||
| bl_label = "Text Style" | bl_label = "Text Style" | ||||
| bl_options = {'DEFAULT_CLOSED'} | bl_options = {'DEFAULT_CLOSED'} | ||||
| @classmethod | @classmethod | ||||
| def poll(cls, context): | def poll(cls, context): | ||||
| ▲ Show 20 Lines • Show All 1,204 Lines • Show Last 20 Lines | |||||