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:
authorJoshua Leung <aligorith@gmail.com>2009-10-23 03:23:09 +0400
committerJoshua Leung <aligorith@gmail.com>2009-10-23 03:23:09 +0400
commitcaa27f09fd19a5d37ae7775b8c80246bd7befe13 (patch)
tree5e66085ed3e2047f461f250152fcb1f4a9b36524 /source/blender/editors/space_graph
parente8af794441bbce7ef49d872e8c3b2c2b7971e0e6 (diff)
Bugfixes:
* The python 'math' library is now included in the py-namespace used to evaluate button expressions. So it is now possible to do 'radians(somevalue)' to get a rotation value that Blender can understand... * Shapekey path getting function now uses the appropriate wrapper for grabbing the pointer to the ID block for the ShapeKey * Made the Graph Editor's minimum zoom size finer...
Diffstat (limited to 'source/blender/editors/space_graph')
-rw-r--r--source/blender/editors/space_graph/space_graph.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/space_graph/space_graph.c b/source/blender/editors/space_graph/space_graph.c
index b4b06844d13..342afab7534 100644
--- a/source/blender/editors/space_graph/space_graph.c
+++ b/source/blender/editors/space_graph/space_graph.c
@@ -151,8 +151,8 @@ static SpaceLink *graph_new(const bContext *C)
ar->v2d.cur= ar->v2d.tot;
- ar->v2d.min[0]= 0.01f;
- ar->v2d.min[1]= 0.01f;
+ ar->v2d.min[0]= 0.001f;
+ ar->v2d.min[1]= 0.001f;
ar->v2d.max[0]= MAXFRAMEF;
ar->v2d.max[1]= 50000.0f;