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>2003-11-13 17:55:13 +0300
committerTon Roosendaal <ton@blender.org>2003-11-13 17:55:13 +0300
commit74eccb3bbce3a6c67ff3178aedda548d4911349e (patch)
tree6cb7b7406424624f9ea1ff690d2095a1fb7c0ba4 /source/blender/src/view.c
parent43f2470173867c160dbfde0e2fc922a35a4ef395 (diff)
- found one other wrong ortho2... causing wrong ortho2 matrices in
3d window...
Diffstat (limited to 'source/blender/src/view.c')
-rw-r--r--source/blender/src/view.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/view.c b/source/blender/src/view.c
index ea78c3df042..5127ce78fbe 100644
--- a/source/blender/src/view.c
+++ b/source/blender/src/view.c
@@ -117,7 +117,7 @@ void persp(int a)
mygetmatrix(G.vd->viewmat1);
}
else if(a== PERSP_WIN) { // only set
- myortho2(-0.5, (float)(curarea->winx)-.05, -0.5, (float)(curarea->winy)-0.5);
+ myortho2(-0.5, (float)(curarea->winx)-0.5, -0.5, (float)(curarea->winy)-0.5);
glLoadIdentity();
}
else if(a== PERSP_VIEW) {