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:
authorAntony Riakiotakis <kalast@gmail.com>2013-06-16 18:54:14 +0400
committerAntony Riakiotakis <kalast@gmail.com>2013-06-16 18:54:14 +0400
commite044891d78bbedb440b63c9603913a940e9c4860 (patch)
treecd1590c992c55dc7f3a4de8e2e198cc8bf419138 /release
parent254de15215e3a6570d66ffb5eab816a5959c61bb (diff)
Fix #35774 Confusing Text in Texture Paint Panel
A simple copy-paste error.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/properties_paint_common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/properties_paint_common.py b/release/scripts/startup/bl_ui/properties_paint_common.py
index 65ab1246c19..b3335f32231 100644
--- a/release/scripts/startup/bl_ui/properties_paint_common.py
+++ b/release/scripts/startup/bl_ui/properties_paint_common.py
@@ -134,8 +134,8 @@ def brush_mask_texture_settings(layout, brush):
layout.operator("brush.stencil_reset_transform").mask = True
if brush.mask_texture:
- layout.label(text="Mask Mapping:")
col = layout.column()
+ col.label(text="Angle:")
col.active = brush.brush_capabilities.has_texture_angle
col.prop(mask_tex_slot, "angle", text="")