[Fix] Negative xpos value for text widgets was off a little.

This commit is contained in:
Allanis 2013-03-09 22:23:40 +00:00
parent fe170aede4
commit 0784ab1624

View File

@ -168,7 +168,7 @@ void window_addText(const unsigned int wid, const int x, const int y,
wgt->h = (double) h;
if(font == NULL) wgt->dat.txt.font = &gl_defFont;
else wgt->dat.txt.font = font;
if(x < 0) wgt->x = wdw->w - wgt->w + x - w;
if(x < 0) wgt->x = wdw->w - wgt->w + x;
else wgt->x = (double)x;
if(y < 0) wgt->y = wdw->h + y - h;
else wgt->y = (double) y;