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:
authorSpivak Vladimir (cwolf3d) <cwolf3d@gmail.com>2019-04-28 20:53:19 +0300
committerSpivak Vladimir (cwolf3d) <cwolf3d@gmail.com>2019-04-28 20:53:19 +0300
commit76553f790d4f4186865b5f1b31b580f59bb7372b (patch)
treec12cc4794cf97922696d33bb04a00855773c0e48 /add_mesh_discombobulator
parentf69b546d6fe884240be572ff1a4126a9e3c268eb (diff)
Correct errors thrown in console when running mesh_discombobulator
https://developer.blender.org/T63954
Diffstat (limited to 'add_mesh_discombobulator')
-rw-r--r--add_mesh_discombobulator/mesh_discombobulator.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/add_mesh_discombobulator/mesh_discombobulator.py b/add_mesh_discombobulator/mesh_discombobulator.py
index f1d564ac..dd7acb29 100644
--- a/add_mesh_discombobulator/mesh_discombobulator.py
+++ b/add_mesh_discombobulator/mesh_discombobulator.py
@@ -666,13 +666,13 @@ class discombob_help(Menu):
layout.label(text="In object mode, still needs a selection in Edit Mode")
layout.separator()
layout.label(text="Doodads - additional objects layered on the mesh surface")
- layout.label("(Similar to dupliverts - but as one separate object)")
+ layout.label(text="(Similar to dupliverts - but as one separate object)")
layout.separator()
layout.label(text="Limitations:", icon="MOD_EXPLODE")
layout.label(text="Be careful with the repeat protusions setting")
- layout.label("(Runs reqursively)")
+ layout.label(text="(Runs reqursively)")
layout.label(text="If possible, avoid using on a high polycount base mesh")
- layout.label("(It can run out of memory and take a long time to compute)")
+ layout.label(text="(It can run out of memory and take a long time to compute)")
class VIEW3D_OT_tools_discombobulate(Operator):
bl_idname = "discombobulate.ops"