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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'release/scripts/startup/bl_ui/properties_data_modifier.py')
-rw-r--r--release/scripts/startup/bl_ui/properties_data_modifier.py15
1 files changed, 5 insertions, 10 deletions
diff --git a/release/scripts/startup/bl_ui/properties_data_modifier.py b/release/scripts/startup/bl_ui/properties_data_modifier.py
index 7863c075344..c6bb6ccf05f 100644
--- a/release/scripts/startup/bl_ui/properties_data_modifier.py
+++ b/release/scripts/startup/bl_ui/properties_data_modifier.py
@@ -151,21 +151,16 @@ class DATA_PT_modifiers(ModifierButtonsPanel, Panel):
col = split.column()
col.label(text="Operation:")
col.prop(md, "operation", text="")
+ row = layout.row()
+ row.label("Solver:")
+ row.prop(md, "solver", expand=True)
col = split.column()
col.label(text="Object:")
col.prop(md, "object", text="")
- """
- layout.prop(md, "use_bmesh")
- if md.use_bmesh:
- box = layout.box()
- box.label("BMesh Options:")
- box.prop(md, "use_bmesh_separate")
- box.prop(md, "use_bmesh_dissolve")
- box.prop(md, "use_bmesh_connect_regions")
- box.prop(md, "threshold")
- """
+ if md.solver == 'BMESH':
+ layout.prop(md, "double_threshold")
def BUILD(self, layout, ob, md):
split = layout.split()