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>2009-10-27 18:19:44 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2009-10-27 18:19:44 +0300
commit560a0108b2bbd39a99c6660227a0f3de955e711d (patch)
treebb98b57a5206eee690de07b70a49234dad1c4fe1 /source/blender/editors/space_buttons/buttons_context.c
parent63e3cfb82f5f365c488241fca801dea94ae308bf (diff)
Bugfix: brush texture buttons were not showing map mode.
Diffstat (limited to 'source/blender/editors/space_buttons/buttons_context.c')
-rw-r--r--source/blender/editors/space_buttons/buttons_context.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_buttons/buttons_context.c b/source/blender/editors/space_buttons/buttons_context.c
index a503aefe751..026498f17af 100644
--- a/source/blender/editors/space_buttons/buttons_context.c
+++ b/source/blender/editors/space_buttons/buttons_context.c
@@ -648,7 +648,7 @@ int buttons_context(const bContext *C, const char *member, bContextDataResult *r
Brush *br= ptr->data;
if(br)
- CTX_data_pointer_set(result, &br->id, &RNA_TextureSlot, br->mtex[(int)br->texact]);
+ CTX_data_pointer_set(result, &br->id, &RNA_BrushTextureSlot, br->mtex[(int)br->texact]);
}
return 1;