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:
authorTon Roosendaal <ton@blender.org>2010-11-08 22:03:42 +0300
committerTon Roosendaal <ton@blender.org>2010-11-08 22:03:42 +0300
commit7fd87de47bbf45bb15cd9e37c2a98d0b729bf16c (patch)
treec7b36b151f5dda975547d40dd0c6bd8241ddd2bc /source/blender/blenkernel
parentf9487fba3994c1a09803f7a80cb69fe28b914a90 (diff)
Small bug, reported by Andy in irc:
Image editor & texture properties, add new Image, inits 'start' now to frame 1 for sequences. Added triple-X warning in Image Open operator, it uses SpaceImage whilst it can be called from other editors. Code is safe but not correct.
Diffstat (limited to 'source/blender/blenkernel')
-rw-r--r--source/blender/blenkernel/intern/texture.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/blenkernel/intern/texture.c b/source/blender/blenkernel/intern/texture.c
index da3dea37220..6a5e5a007f3 100644
--- a/source/blender/blenkernel/intern/texture.c
+++ b/source/blender/blenkernel/intern/texture.c
@@ -573,6 +573,7 @@ void default_tex(Tex *tex)
tex->iuser.fie_ima= 2;
tex->iuser.ok= 1;
tex->iuser.frames= 100;
+ tex->iuser.sfra= 1;
tex->preview = NULL;
}