[Bf-extensions-cvs] [76553f79] master: Correct errors thrown in console when running mesh_discombobulator https://developer.blender.org/T63954

Spivak Vladimir cwolf3d noreply at git.blender.org
Sun Apr 28 19:54:44 CEST 2019


Commit: 76553f790d4f4186865b5f1b31b580f59bb7372b
Author: Spivak Vladimir (cwolf3d)
Date:   Sun Apr 28 20:53:19 2019 +0300
Branches: master
https://developer.blender.org/rBA76553f790d4f4186865b5f1b31b580f59bb7372b

Correct errors thrown in console when running mesh_discombobulator
https://developer.blender.org/T63954

===================================================================

M	add_mesh_discombobulator/mesh_discombobulator.py

===================================================================

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"



More information about the Bf-extensions-cvs mailing list