Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2020-02-14 08:11:01 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-02-14 08:14:02 +0300
commitf621f03e4b252d5ef1d86b9306a22628da3160ce (patch)
tree21f4630ba495ca2eaa6ea1e7accf6be1bfd762d3 /source/blender/editors/space_info
parentbbe6b661df08bbd0c73a2b89bffe4525667aab9b (diff)
Fix console cursor offset
Also remove hard coded offsets.
Diffstat (limited to 'source/blender/editors/space_info')
-rw-r--r--source/blender/editors/space_info/textview.c16
-rw-r--r--source/blender/editors/space_info/textview.h6
2 files changed, 7 insertions, 15 deletions
diff --git a/source/blender/editors/space_info/textview.c b/source/blender/editors/space_info/textview.c
index 6678ac2b659..d7f2cb9ce1f 100644
--- a/source/blender/editors/space_info/textview.c
+++ b/source/blender/editors/space_info/textview.c
@@ -93,7 +93,7 @@ static void textview_draw_sel(const char *str,
immBindBuiltinProgram(GPU_SHADER_2D_UNIFORM_COLOR);
immUniformColor4ubv(bg_sel);
- immRecti(pos, xy[0] + (cwidth * sta), xy[1] - 2 + lheight, xy[0] + (cwidth * end), xy[1] - 2);
+ immRecti(pos, xy[0] + (cwidth * sta), xy[1] + lheight, xy[0] + (cwidth * end), xy[1]);
immUnbindProgram();
@@ -316,7 +316,7 @@ int textview_draw(TextViewContext *tvc,
{
TextViewDrawState tds = {0};
- int x_orig = tvc->draw_rect.xmin, y_orig = tvc->draw_rect.ymin + tvc->lheight / 6;
+ const int x_orig = tvc->draw_rect.xmin, y_orig = tvc->draw_rect.ymin;
int xy[2];
/* Disable selection by. */
int sel[2] = {-1, -1};
@@ -367,11 +367,6 @@ int textview_draw(TextViewContext *tvc,
tds.mval = mval;
tds.do_draw = do_draw;
- /* Shouldnt be needed. */
- tvc->cwidth = tds.cwidth;
- tvc->columns = tds.columns;
- tvc->iter_index = 0;
-
if (tvc->sel_start != tvc->sel_end) {
sel[0] = tvc->sel_start;
sel[1] = tvc->sel_end;
@@ -384,6 +379,7 @@ int textview_draw(TextViewContext *tvc,
tvc->const_colors(tvc, bg_sel);
}
+ int iter_index = 0;
do {
const char *ext_line;
int ext_len;
@@ -414,8 +410,8 @@ int textview_draw(TextViewContext *tvc,
}
if (do_draw) {
- if (tvc->draw_cursor && tvc->iter_index == 0) {
- tvc->draw_cursor(tvc);
+ if (tvc->draw_cursor && iter_index == 0) {
+ tvc->draw_cursor(tvc, tds.cwidth, tds.columns, tds.lofs);
}
}
@@ -424,7 +420,7 @@ int textview_draw(TextViewContext *tvc,
break;
}
- tvc->iter_index++;
+ iter_index++;
} while (tvc->step(tvc));
}
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;