Skip to content
This repository has been archived by the owner on Jul 21, 2024. It is now read-only.

Fixed error #260

Merged
merged 1 commit into from
Apr 4, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2732,6 +2732,7 @@ def draw(self, context):
#self.layout.label(text="Tip: for slow PC, disable the subdivision in Display Options below", icon='INFO')
# Sub-panel for all tools below
box_act_tools_sub = self.layout.box()

# Character library

box_act_tools_sub.label(text="CHARACTER SET-UP", icon="RNA")
Expand Down Expand Up @@ -2780,7 +2781,7 @@ def draw(self, context):
box_act_tools_sub.operator('mbast.button_automodelling_on', icon=icon_expand)
else:
box_act_tools_sub.operator('mbast.button_automodelling_off', icon=icon_collapse)
box_auto = box_act_content_one.box()
box_auto = self.layout.box()
box_auto.operator("mbast.auto_modelling", icon='OUTLINER_DATA_MESH')
box_auto.operator("mbast.auto_modelling_mix", icon='OUTLINER_OB_MESH')
else:
Expand Down Expand Up @@ -3612,7 +3613,6 @@ def mbcrea_enum_morph_items_update(self, context):
mbcrea_combined_morph_list = algorithms.create_enum_property_items(props)
return mbcrea_combined_morph_list


bpy.types.Scene.mbcrea_morphs_items_1 = bpy.props.EnumProperty(
items=mbcrea_enum_morph_items_update,
name="",
Expand Down