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:
authorMartin Poirier <theeth@yahoo.com>2007-09-24 16:25:13 +0400
committerMartin Poirier <theeth@yahoo.com>2007-09-24 16:25:13 +0400
commitd888a6e0da4c2fb3452c23c076c0c89ba5fa9af4 (patch)
treea0fd3e0bdbb89c4957539ee58fa18eb949380848 /source/blender/src/transform.c
parent48095977757696b435c886a6f2c58f0eee6da30d (diff)
fix typo that broke compilation
Diffstat (limited to 'source/blender/src/transform.c')
-rw-r--r--source/blender/src/transform.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/transform.c b/source/blender/src/transform.c
index 1038e141299..366dfb7abe8 100644
--- a/source/blender/src/transform.c
+++ b/source/blender/src/transform.c
@@ -3291,7 +3291,7 @@ static short getAnimEdit_DrawTime(TransInfo *t)
if (t->spacetype == SPACE_ACTION && G.saction) {
drawtime = (G.saction->flag & SACTION_DRAWTIME)? 1 : 0;
}
- else if (t->spacetype == SPACE_NLA && G.snla) {=
+ else if (t->spacetype == SPACE_NLA && G.snla) {
drawtime = (G.snla->flag & SNLA_DRAWTIME)? 1 : 0;
}
else {