From 664de20eee86c4eaa4cdbe7263e22c1ba3716634 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 12 Sep 2013 03:38:25 +0000 Subject: [PATCH] correct brackground rectangle drawing in info view. need to compensate for recent change in text offset. --- source/blender/editors/space_info/textview.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/source/blender/editors/space_info/textview.c b/source/blender/editors/space_info/textview.c index e23f792d0b5..d4d45af6431 100644 --- a/source/blender/editors/space_info/textview.c +++ b/source/blender/editors/space_info/textview.c @@ -123,7 +123,6 @@ static int console_wrap_offsets(const char *str, int len, int width, int *lines, static int console_draw_string(ConsoleDrawContext *cdc, const char *str, int str_len, const unsigned char fg[3], const unsigned char bg[3], const unsigned char bg_sel[4]) { - int rct_ofs = cdc->lheight / 4; int tot_lines; /* total number of lines for wrapping */ int *offsets; /* offsets of line beginnings for wrapping */ int y_next; @@ -187,7 +186,7 @@ static int console_draw_string(ConsoleDrawContext *cdc, const char *str, int str if (bg) { glColor3ubv(bg); - glRecti(0, cdc->xy[1] - rct_ofs, cdc->winx, (cdc->xy[1] + (cdc->lheight * tot_lines)) + rct_ofs); + glRecti(0, cdc->xy[1], cdc->winx, (cdc->xy[1] + (cdc->lheight * tot_lines))); } glColor3ubv(fg); @@ -235,7 +234,7 @@ static int console_draw_string(ConsoleDrawContext *cdc, const char *str, int str if (bg) { glColor3ubv(bg); - glRecti(0, cdc->xy[1] - rct_ofs, cdc->winx, cdc->xy[1] + cdc->lheight - rct_ofs); + glRecti(0, cdc->xy[1], cdc->winx, cdc->xy[1] + cdc->lheight); } glColor3ubv(fg);