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:
authorRob Haarsma <phaseIV@zonnet.nl>2003-05-03 16:17:11 +0400
committerRob Haarsma <phaseIV@zonnet.nl>2003-05-03 16:17:11 +0400
commitb43473e4257c6ce958c7811b7e44cb085a4f3b07 (patch)
treeb183d7b446b699649e3c09aa65c399910fbbc212 /source/blender/src/mywindow.c
parentda1e6bae44de43df974524ae47ac46e3f1e2fa39 (diff)
Multilingual interface support added.
All modifications are behind compileflag INTERNATIONAL, and affect these two directories; source/blender/src and source/blender/ftfont. Thanks to philipp, a new utf8towchar() function is added to Shizu's work, which fixes the international support for OSX. It also makes the iconv library obsolete. This means all translation files (blender.mo) need to be 'recoded' to UTF-8, and language support in the fileselect window and the text editor is not possible. Iconv might be added in the future to enable these features.
Diffstat (limited to 'source/blender/src/mywindow.c')
-rw-r--r--source/blender/src/mywindow.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/mywindow.c b/source/blender/src/mywindow.c
index 7f3e2af70b4..f7208ceda2f 100644
--- a/source/blender/src/mywindow.c
+++ b/source/blender/src/mywindow.c
@@ -97,7 +97,7 @@ void mywindow_init_mainwin(Window *win, int orx, int ory, int sizex, int sizey)
mainwindow.ymax= ory+sizey-1;
mainwindow.qevents= NULL;
- myortho2(-0.5, (float)sizex-0.5, -0.5, (float)sizey-0.5);
+ myortho2(-0.5, (float)sizex-0.5, -0.6, (float)sizey-0.6);
glLoadIdentity();
glGetFloatv(GL_PROJECTION_MATRIX, (float *)mainwindow.winmat);