Fix for console & info clipping text too early

D845 from @donfabio
This commit is contained in:
Campbell Barton 2014-11-18 13:41:40 +01:00
parent a2d95b2f5a
commit 2f6e9cb4fd
1 changed files with 1 additions and 1 deletions

View File

@ -155,7 +155,7 @@ static int console_draw_string(ConsoleDrawContext *cdc, const char *str, int str
MEM_freeN(offsets);
return 1;
}
else if (y_next - cdc->lheight < cdc->ymin) {
else if (y_next < cdc->ymin) {
/* have not reached the drawable area so don't break */
cdc->xy[1] = y_next;