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:
authorWilliam Reynish <billrey@me.com>2019-03-06 18:43:37 +0300
committerWilliam Reynish <billrey@me.com>2019-03-06 18:43:37 +0300
commitee099d5624088ffbfe933770b212e89a4531dbcf (patch)
treeff7ac36e8c8d51840135fc0799a66eb07b63530e /release/scripts/startup/bl_ui/properties_object.py
parent9d3eec785b492b7e7a545efd62e1c906d4a574ff (diff)
UI: Name changes
In accordance with T56648. - Render Border -> Render Region - Clipping Border -> Clipping Region - Instancing 'Scale' -> 'Scale to Face Size' - Instancing 'Rotation' -> 'Align to Vertex Normal' Python API is left as-is, for now. DIfferential revision: D4435
Diffstat (limited to 'release/scripts/startup/bl_ui/properties_object.py')
-rw-r--r--release/scripts/startup/bl_ui/properties_object.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/release/scripts/startup/bl_ui/properties_object.py b/release/scripts/startup/bl_ui/properties_object.py
index 24df32c1e94..2a2ea7e5648 100644
--- a/release/scripts/startup/bl_ui/properties_object.py
+++ b/release/scripts/startup/bl_ui/properties_object.py
@@ -299,7 +299,7 @@ class OBJECT_PT_instancing(ObjectButtonsPanel, Panel):
flow = layout.grid_flow(row_major=True, columns=0, even_columns=True, even_rows=False, align=False)
if ob.instance_type == 'VERTS':
- layout.prop(ob, "use_instance_vertices_rotation", text="Rotation")
+ layout.prop(ob, "use_instance_vertices_rotation", text="Align to Vertex Normal")
elif ob.instance_type == 'COLLECTION':
col = flow.column()
@@ -318,7 +318,7 @@ from .properties_animviz import (
class OBJECT_PT_instancing_size(ObjectButtonsPanel, Panel):
- bl_label = "Size"
+ bl_label = "Scale to Face Size"
bl_parent_id = "OBJECT_PT_instancing"
@classmethod
@@ -337,7 +337,7 @@ class OBJECT_PT_instancing_size(ObjectButtonsPanel, Panel):
layout.use_property_split = True
layout.active = ob.use_instance_faces_scale
- layout.prop(ob, "instance_faces_scale", text="Inherit Scale")
+ layout.prop(ob, "instance_faces_scale", text="Factor")
class OBJECT_PT_motion_paths(MotionPathButtonsPanel, Panel):