Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Bakker <j.bakker@atmind.nl>2018-04-19 16:22:30 +0300
committerJeroen Bakker <j.bakker@atmind.nl>2018-04-19 16:22:30 +0300
commit733fd3eabd840a1bc60f5ec8960330dca3cbc347 (patch)
tree078f1c75f3b50d5515713f18c4eeba53bdfd3fce /release/scripts/startup/bl_ui/properties_collection.py
parent8a2f0058aeab48e837561719a5dda27985d99ee5 (diff)
Workbench: removed per collection object color
Will be part of the collection manager where per collection the ob->col can be set. This currently depends on DepsGraph + CollectionManager. I removed it for now so the code won't influence development
Diffstat (limited to 'release/scripts/startup/bl_ui/properties_collection.py')
-rw-r--r--release/scripts/startup/bl_ui/properties_collection.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/release/scripts/startup/bl_ui/properties_collection.py b/release/scripts/startup/bl_ui/properties_collection.py
index 8d795681d4c..2d032e7f95d 100644
--- a/release/scripts/startup/bl_ui/properties_collection.py
+++ b/release/scripts/startup/bl_ui/properties_collection.py
@@ -86,19 +86,6 @@ class COLLECTION_PT_clay_settings(CollectionButtonsPanel, Panel):
col.template_override_property(collection_props, scene_props, "hair_brightness_randomness")
-class COLLECTION_PT_workbench_settings(CollectionButtonsPanel, Panel):
- bl_label = "Collection Settings"
-
- def draw(self, context):
- layout = self.layout
- scene_props = context.scene.collection_properties['BLENDER_WORKBENCH']
- collection = get_collection_from_context(context)
- collection_props = collection.engine_overrides['BLENDER_WORKBENCH']
-
- col = layout.column()
- col.template_override_property(collection_props, scene_props, "object_color")
-
-
class COLLECTION_PT_object_mode_settings(CollectionButtonsPanel, Panel):
bl_label = "Object Mode Settings"
@@ -183,7 +170,6 @@ class COLLECTION_PT_paint_vertex_mode_settings(CollectionButtonsPanel, Panel):
classes = (
COLLECTION_PT_context_collection,
COLLECTION_PT_clay_settings,
- COLLECTION_PT_workbench_settings,
COLLECTION_PT_object_mode_settings,
COLLECTION_PT_edit_mode_settings,
COLLECTION_PT_paint_weight_mode_settings,