Changeset View
Changeset View
Standalone View
Standalone View
release/scripts/startup/bl_ui/space_userpref.py
| Show First 20 Lines • Show All 2,321 Lines • ▼ Show 20 Lines | class USERPREF_PT_experimental_debugging(ExperimentalPanel, Panel): | ||||
| def draw(self, context): | def draw(self, context): | ||||
| self._draw_items( | self._draw_items( | ||||
| context, ( | context, ( | ||||
| ({"property": "use_undo_legacy"}, "T60695"), | ({"property": "use_undo_legacy"}, "T60695"), | ||||
| ({"property": "override_auto_resync"}, "T83811"), | ({"property": "override_auto_resync"}, "T83811"), | ||||
| ({"property": "use_cycles_debug"}, None), | ({"property": "use_cycles_debug"}, None), | ||||
| ({"property": "show_asset_debug_info"}, None), | ({"property": "show_asset_debug_info"}, None), | ||||
| ({"property": "use_asset_indexing"}, None), | ({"property": "use_asset_indexing"}, None), | ||||
| ({"property": "use_viewport_debug"}, None), | |||||
| ), | ), | ||||
| ) | ) | ||||
| # ----------------------------------------------------------------------------- | # ----------------------------------------------------------------------------- | ||||
| # Class Registration | # Class Registration | ||||
| # Order of registration defines order in UI, | # Order of registration defines order in UI, | ||||
| ▲ Show 20 Lines • Show All 107 Lines • Show Last 20 Lines | |||||