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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2010-08-04 19:56:18 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2010-08-04 19:56:18 +0400
commit8b8c28075539fb0f4411bcec973e48718c80fd99 (patch)
treeabd98cf13af996f490328e8e9842d62e251a78ee /release
parent0aef61caef5c7f10eeca8870ee11e80a8cd10c1b (diff)
Fix #23157: missing sculpt symmetry and appearance panels after python
registration changes.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/ui/space_view3d_toolbar.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/ui/space_view3d_toolbar.py b/release/scripts/ui/space_view3d_toolbar.py
index 625eae89dbe..faa5c0324bf 100644
--- a/release/scripts/ui/space_view3d_toolbar.py
+++ b/release/scripts/ui/space_view3d_toolbar.py
@@ -1016,7 +1016,7 @@ class VIEW3D_PT_sculpt_options(PaintPanel, bpy.types.Panel):
-class VIEW3D_PT_sculpt_symmetry(PaintPanel):
+class VIEW3D_PT_sculpt_symmetry(PaintPanel, bpy.types.Panel):
bl_label = "Symmetry"
bl_default_closed = True
@@ -1054,7 +1054,7 @@ class VIEW3D_PT_sculpt_symmetry(PaintPanel):
col.prop(sculpt, "use_symmetry_feather", text="Feather")
-class VIEW3D_PT_tools_brush_appearance(PaintPanel):
+class VIEW3D_PT_tools_brush_appearance(PaintPanel, bpy.types.Panel):
bl_label = "Appearance"
bl_default_closed = True