Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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