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:
authorDiego Borghetti <bdiego@gmail.com>2010-05-12 22:51:36 +0400
committerDiego Borghetti <bdiego@gmail.com>2010-05-12 22:51:36 +0400
commit98e0b07b51d8f6a4e04eae78ae311b67d82ceadf (patch)
treea63309a6b6ac22b686d7288a3a0a349b7f1ba59b /source/blender/editors/space_node/space_node.c
parent5f6c7ad23da6d4096cfaf24ff1de527fc1f1b5b5 (diff)
Node Space: tweak the zoom in/out value.
Venomgfx request to allow more zoom in/out value. Also put the code to path old files, so in the next subversion bump we need move the code.
Diffstat (limited to 'source/blender/editors/space_node/space_node.c')
-rw-r--r--source/blender/editors/space_node/space_node.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/space_node/space_node.c b/source/blender/editors/space_node/space_node.c
index d22d1b4aa2d..6388e68a1f5 100644
--- a/source/blender/editors/space_node/space_node.c
+++ b/source/blender/editors/space_node/space_node.c
@@ -136,8 +136,8 @@ static SpaceLink *node_new(const bContext *C)
ar->v2d.max[0]= 32000.0f;
ar->v2d.max[1]= 32000.0f;
- ar->v2d.minzoom= 0.2f;
- ar->v2d.maxzoom= 1.21f;
+ ar->v2d.minzoom= 0.09f;
+ ar->v2d.maxzoom= 2.31f;
ar->v2d.scroll= (V2D_SCROLL_RIGHT|V2D_SCROLL_BOTTOM);
ar->v2d.keepzoom= V2D_LIMITZOOM|V2D_KEEPASPECT;