Small fixes

This commit is contained in:
Yusarina
2025-04-01 17:32:45 +01:00
parent c67f30fb97
commit 12083c28c5
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -84,7 +84,7 @@ class AvatarToolkit_PT_UpdaterPanel(bpy.types.Panel):
bl_region_type = 'UI'
bl_category = CATEGORY_NAME
bl_parent_id = AvatarToolKit_PT_AvatarToolkitPanel.bl_idname
bl_order = 8
bl_order = 9
bl_options = {'DEFAULT_CLOSED'}
def draw(self, context: bpy.types.Context) -> None:
+1 -1
View File
@@ -11,8 +11,8 @@ from ...core.common import (
clear_unused_data_blocks,
join_mesh_objects,
remove_unused_shapekeys,
simplify_bonename
)
from ...core.dictionaries import simplify_bonename
class AvatarToolkit_OT_MergeArmature(bpy.types.Operator):
"""Operator for merging two armatures together with their associated meshes"""
+1 -1
View File
@@ -213,7 +213,7 @@ class AvatarToolKit_PT_TextureAtlasPanel(Panel):
bl_region_type = 'UI'
bl_category = CATEGORY_NAME
bl_parent_id = AvatarToolKit_PT_AvatarToolkitPanel.bl_idname
bl_order = 6
bl_order = 7
def draw(self, context: Context):
layout = self.layout
+1 -1
View File
@@ -36,7 +36,7 @@ class AvatarToolKit_PT_SettingsPanel(Panel):
bl_region_type: str = 'UI'
bl_category: str = CATEGORY_NAME
bl_parent_id: str = AvatarToolKit_PT_AvatarToolkitPanel.bl_idname
bl_order: int = 7
bl_order: int = 8
bl_options = {'DEFAULT_CLOSED'}
def draw(self, context: Context) -> None: