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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2018-11-25 01:01:50 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-11-25 01:43:03 +0300
commit33750e8abbade21813365a7dd62e036969d5006c (patch)
treeb8b71bd205f9acbabb69084327edcc1e71260ce2
parent487af39c990ffdb207339964964fe3a5a5fa9c04 (diff)
Fix T58006: smart UV project island margin should not use length units.
This distance is in UV space, not world space.
-rw-r--r--release/scripts/startup/bl_operators/uvcalc_smart_project.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_operators/uvcalc_smart_project.py b/release/scripts/startup/bl_operators/uvcalc_smart_project.py
index ec6a9fc92e3..2acf431c577 100644
--- a/release/scripts/startup/bl_operators/uvcalc_smart_project.py
+++ b/release/scripts/startup/bl_operators/uvcalc_smart_project.py
@@ -1060,7 +1060,6 @@ class SmartProject(Operator):
island_margin = FloatProperty(
name="Island Margin",
description="Margin to reduce bleed from adjacent islands",
- unit='LENGTH', subtype='DISTANCE',
min=0.0, max=1.0,
default=0.0,
)