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

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikhail Rachinskiy <mikhail.rachinskiy@gmail.com>2019-09-24 12:48:07 +0300
committerMikhail Rachinskiy <mikhail.rachinskiy@gmail.com>2019-09-24 12:48:07 +0300
commitaae47dca778b8f9c8a60b3c0c5c938b0f402915d (patch)
treec65e6cf989fdf62abf7039c21c659b81f4503fcd /object_print3d_utils/__init__.py
parent245d0134cfed3351360d8fe6e36af71140809950 (diff)
Print3D: use subpanels to declutter UI
Print3D has three tool categories: Mesh Check, Cleanup & Modify, Export. The first category being the main point of the add-on, the rest are supplementary and should not take visual space by default. Notes: Ideally Cleanup & Modify should be their own categories, but there are only two Modify tools so I decided to merge into one category. There is a point to make that Cleanup & Modify panel should be open by default, I am not strongly agains that and it could be done upon receiving feedback from users. Also fix multiple Select Non Manifod operators displaying in report.
Diffstat (limited to 'object_print3d_utils/__init__.py')
-rw-r--r--object_print3d_utils/__init__.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/object_print3d_utils/__init__.py b/object_print3d_utils/__init__.py
index 09be0501..eab7ffd1 100644
--- a/object_print3d_utils/__init__.py
+++ b/object_print3d_utils/__init__.py
@@ -128,8 +128,9 @@ class SceneProperties(PropertyGroup):
classes = (
SceneProperties,
- ui.VIEW3D_PT_print3d_object,
- ui.VIEW3D_PT_print3d_mesh,
+ ui.VIEW3D_PT_print3d,
+ ui.VIEW3D_PT_print3d_cleanup,
+ ui.VIEW3D_PT_print3d_export,
operators.MESH_OT_print3d_info_volume,
operators.MESH_OT_print3d_info_area,