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@pandora.be>2013-05-02 21:55:17 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2013-05-02 21:55:17 +0400
commitcc86176a608ac97d064e53d52e2abad8479f2d56 (patch)
tree028bd0c6c034ecb8f38f2c6ef3b706c1772b9d6e /release
parent12db4f3eae0981607d5fe35007ef134687b19b95 (diff)
Fix #35190: texture mask stencil Reset Transform did not work properly.
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 1b6356f0dba..65ab1246c19 100644
--- a/release/scripts/startup/bl_ui/properties_paint_common.py
+++ b/release/scripts/startup/bl_ui/properties_paint_common.py
@@ -131,7 +131,7 @@ def brush_mask_texture_settings(layout, brush):
if mask_tex_slot.map_mode == 'STENCIL':
if brush.mask_texture and brush.mask_texture.type == 'IMAGE':
layout.operator("brush.stencil_fit_image_aspect").mask = True
- layout.operator("brush.stencil_reset_transform")
+ layout.operator("brush.stencil_reset_transform").mask = True
if brush.mask_texture:
layout.label(text="Mask Mapping:")