Changeset View
Changeset View
Standalone View
Standalone View
release/scripts/startup/bl_ui/space_userpref.py
| Show First 20 Lines • Show All 212 Lines • ▼ Show 20 Lines | def draw(self, context): | ||||
| userpref = context.user_preferences | userpref = context.user_preferences | ||||
| view = userpref.view | view = userpref.view | ||||
| row = layout.row() | row = layout.row() | ||||
| col = row.column() | col = row.column() | ||||
| col.label(text="Display:") | col.label(text="Display:") | ||||
| col.prop(view, "ui_scale", text="Scale") | col.prop(view, "ui_scale", text="Scale") | ||||
| col.prop(view, "ui_line_width", text="Line Width") | |||||
| col.prop(view, "show_tooltips") | col.prop(view, "show_tooltips") | ||||
| col.prop(view, "show_tooltips_python") | col.prop(view, "show_tooltips_python") | ||||
| col.prop(view, "show_object_info", text="Object Info") | col.prop(view, "show_object_info", text="Object Info") | ||||
| col.prop(view, "show_large_cursors") | col.prop(view, "show_large_cursors") | ||||
| col.prop(view, "show_view_name", text="View Name") | col.prop(view, "show_view_name", text="View Name") | ||||
| col.prop(view, "show_playback_fps", text="Playback FPS") | col.prop(view, "show_playback_fps", text="Playback FPS") | ||||
| col.prop(view, "use_global_scene") | col.prop(view, "use_global_scene") | ||||
| col.prop(view, "object_origin_size") | col.prop(view, "object_origin_size") | ||||
| ▲ Show 20 Lines • Show All 1,347 Lines • Show Last 20 Lines | |||||