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:
authormeta-androcto <meta.androcto1@gmail.com>2019-07-03 12:59:02 +0300
committermeta-androcto <meta.androcto1@gmail.com>2019-07-03 12:59:02 +0300
commitccf80c0e047d80a519b077af660aaf06e226ab94 (patch)
treecfb65cfb8ac258f7a7c3cb7a072061f10c368963 /add_mesh_geodesic_domes
parent2b144940181b60c8a08b91646e167064f286a2ef (diff)
add_mesh_geodesic_domes: fix Face mode
Diffstat (limited to 'add_mesh_geodesic_domes')
-rw-r--r--add_mesh_geodesic_domes/third_domes_panel_271.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/add_mesh_geodesic_domes/third_domes_panel_271.py b/add_mesh_geodesic_domes/third_domes_panel_271.py
index 2e7956de..cbef1275 100644
--- a/add_mesh_geodesic_domes/third_domes_panel_271.py
+++ b/add_mesh_geodesic_domes/third_domes_panel_271.py
@@ -136,14 +136,14 @@ class GenerateGeodesicDome(Operator):
("7", "spikes", "spikes"),
("8", "boxed", "boxed"),
("9", "diamond", "diamond"),
- ("10", "bar", "bar"),
+# ("10", "bar", "bar"),
],
default='0'
)
facetoggle: BoolProperty(
name="Activate: Face Object",
description="Activate Faces for Geodesic object",
- default=False
+ default=True
)
face_use_imported_object: BoolProperty(
name="Use: Imported Object",
@@ -1647,7 +1647,7 @@ class DialogOperator(Operator):
col = layout.column()
tmp = message.split("\n")
for el in tmp:
- col.label(el)
+ col.label(text = "")
def execute(self, context):
return {'FINISHED'}