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-01-03 00:51:47 +0400
committerAntony Riakiotakis <kalast@gmail.com>2013-01-03 00:51:47 +0400
commitab9915ba8d2f0c594853dd96bc01170776a774fa (patch)
tree66ce2c2bc838ac030c4233bee2954a6559d9e7d6 /release
parent7139a08566a0d33163daf630219688e0d2ef39f7 (diff)
revert 53478, it looks this is still useful for a couple of use cases in non-projective texture painting such as stamping a static texture and using image space size in pixels.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d_toolbar.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d_toolbar.py b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
index 4d1d2ad10bb..0e1f5d8dff2 100644
--- a/release/scripts/startup/bl_ui/space_view3d_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
@@ -720,6 +720,8 @@ class VIEW3D_PT_tools_brush_texture(Panel, View3DPaintPanel):
col = layout.column()
col.template_ID_preview(brush, "texture", new="texture.new", rows=3, cols=8)
+ if brush.use_paint_image:
+ col.prop(brush, "use_fixed_texture")
if context.sculpt_object:
sculpt_brush_texture_settings(col, brush)