Fix rendering vertical (->down) text.

SVN revision: 31115
This commit is contained in:
Kim Woelders 2007-08-02 17:32:14 +00:00
parent adac39bcde
commit 36fa0e1169
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ TextDrawRotBack(Win win, Drawable dst, Drawable src, int x, int y,
break;
case FONT_TO_DOWN:
EXGetGeometry(dst, NULL, NULL, NULL, &win_w, NULL, NULL, NULL);
im = EImageGrabDrawable(src, None, 0, 0, 0, w, h);
im = EImageGrabDrawable(src, None, 0, 0, w, h, 0);
EImageOrientate(im, 1);
EImageRenderOnDrawable(im, win, dst, 0, win_w - y - h, x, h, w);
EImageFree(im);