Changeset View
Changeset View
Standalone View
Standalone View
release/scripts/startup/bl_ui/space_userpref.py
| Show First 20 Lines • Show All 933 Lines • ▼ Show 20 Lines | def draw_props(self, context, layout): | ||||
| col = flow.column() | col = flow.column() | ||||
| col.prop(ui, "gizmo_primary") | col.prop(ui, "gizmo_primary") | ||||
| col.prop(ui, "gizmo_secondary") | col.prop(ui, "gizmo_secondary") | ||||
| col = flow.column() | col = flow.column() | ||||
| col.prop(ui, "gizmo_a") | col.prop(ui, "gizmo_a") | ||||
| col.prop(ui, "gizmo_b") | col.prop(ui, "gizmo_b") | ||||
| col = flow.column() | |||||
| col.prop(ui, "paint_cursor") | |||||
| class USERPREF_PT_theme_interface_icons(PreferencePanel, Panel): | class USERPREF_PT_theme_interface_icons(PreferencePanel, Panel): | ||||
| bl_label = "Icon Colors" | bl_label = "Icon Colors" | ||||
| bl_options = {'DEFAULT_CLOSED'} | bl_options = {'DEFAULT_CLOSED'} | ||||
| bl_parent_id = "USERPREF_PT_theme_user_interface" | bl_parent_id = "USERPREF_PT_theme_user_interface" | ||||
| def draw_props(self, context, layout): | def draw_props(self, context, layout): | ||||
| theme = context.preferences.themes[0] | theme = context.preferences.themes[0] | ||||
| ▲ Show 20 Lines • Show All 1,250 Lines • Show Last 20 Lines | |||||