From f621f03e4b252d5ef1d86b9306a22628da3160ce Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 14 Feb 2020 16:11:01 +1100 Subject: Fix console cursor offset Also remove hard coded offsets. --- source/blender/editors/space_info/textview.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'source/blender/editors/space_info/textview.h') diff --git a/source/blender/editors/space_info/textview.h b/source/blender/editors/space_info/textview.h index 6fcd9d30abe..a33ed91570d 100644 --- a/source/blender/editors/space_info/textview.h +++ b/source/blender/editors/space_info/textview.h @@ -27,10 +27,6 @@ typedef struct TextViewContext { /** Text selection, when a selection range is in use. */ int sel_start, sel_end; - /* view settings */ - int cwidth; /* shouldnt be needed! */ - int columns; /* shouldnt be needed! */ - int row_vpadding; /** Area to draw text: (0, 0, winx, winy) with a margin applied and scroll-bar subtracted. */ @@ -56,7 +52,7 @@ typedef struct TextViewContext { int *icon, unsigned char icon_fg[4], unsigned char icon_bg[4]); - void (*draw_cursor)(struct TextViewContext *tvc); + void (*draw_cursor)(struct TextViewContext *tvc, int cwidth, int columns, int descender); /* constant theme colors */ void (*const_colors)(struct TextViewContext *tvc, unsigned char bg_sel[4]); void *iter; -- cgit v1.2.3