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:
authorCampbell Barton <ideasman42@gmail.com>2013-04-03 05:36:00 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-04-03 05:36:00 +0400
commitff7b353ce68a2b16fd4649d4d81214db7a802307 (patch)
treede7659c35aea39a888c53cc8b9c90506550e37b2 /source/blender/editors/space_buttons/buttons_texture.c
parent6a47f756a6a3868b16b015752226dfa3303cb505 (diff)
style cleanup
Diffstat (limited to 'source/blender/editors/space_buttons/buttons_texture.c')
-rw-r--r--source/blender/editors/space_buttons/buttons_texture.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/editors/space_buttons/buttons_texture.c b/source/blender/editors/space_buttons/buttons_texture.c
index b3d5d4884ff..5a7d70d279c 100644
--- a/source/blender/editors/space_buttons/buttons_texture.c
+++ b/source/blender/editors/space_buttons/buttons_texture.c
@@ -333,14 +333,14 @@ static void template_texture_select(bContext *C, void *user_p, void *UNUSED(arg)
ct->texture = tex;
- if(user->ptr.type == &RNA_ParticleSettingsTextureSlot) {
+ if (user->ptr.type == &RNA_ParticleSettingsTextureSlot) {
/* stupid exception for particle systems which still uses influence
* from the old texture system, set the active texture slots as well */
ParticleSettings *part = user->ptr.id.data;
int a;
- for(a = 0; a < MAX_MTEX; a++)
- if(user->ptr.data == part->mtex[a])
+ for (a = 0; a < MAX_MTEX; a++)
+ if (user->ptr.data == part->mtex[a])
part->texact = a;
}
}