[vte/wip/egmont/bidi: 48/83] cursor: use member methods that protect against offscreen values
- From: Egmont Koblinger <egmontkob src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [vte/wip/egmont/bidi: 48/83] cursor: use member methods that protect against offscreen values
- Date: Thu, 3 Jan 2019 12:57:26 +0000 (UTC)
commit 85a8d164fc250897ef0e5561fb3c0b4a0150e479
Author: Egmont Koblinger <egmont gmail com>
Date: Wed Aug 29 01:01:10 2018 +0200
cursor: use member methods that protect against offscreen values
src/vte.cc | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
---
diff --git a/src/vte.cc b/src/vte.cc
index a8894494..95f8d311 100644
--- a/src/vte.cc
+++ b/src/vte.cc
@@ -9160,7 +9160,6 @@ Terminal::paint_cursor()
/* Find the first cell of the character "under" the cursor.
* This is for CJK. For TAB, paint the cursor where it really is. */
VteRowData const *row_data = find_row_data(drow);
- bidicellmap const *bidimap = m_ringview.get_row_map(drow);
auto cell = find_charcell(col, drow);
while (cell != NULL && cell->attr.fragment() && cell->c != '\t' && col > 0) {
@@ -9169,12 +9168,12 @@ Terminal::paint_cursor()
}
/* Draw the cursor. */
- viscol = bidimap[col].log2vis;
+ viscol = m_ringview.log2vis(drow, col);
item.c = (cell && cell->c) ? cell->c : ' ';
item.columns = item.c == '\t' ? 1 : cell ? cell->attr.columns() : 1;
- item.x = (viscol - ((cell && bidimap[viscol].vis_rtl) ? cell->attr.columns() - 1 : 0)) * width;
+ item.x = (viscol - ((cell && m_ringview.vis_is_rtl(drow, viscol)) ? cell->attr.columns() - 1 : 0)) *
width;
item.y = row_to_pixel(drow);
- item.mirror = bidimap[viscol].vis_rtl;
+ item.mirror = m_ringview.vis_is_rtl(drow, viscol);
item.box_mirror = (row_data && (row_data->attr.bidi_flags & VTE_BIDI_BOX_MIRROR));
if (cell && cell->c != 0) {
style = _vte_draw_get_style(cell->attr.bold(), cell->attr.italic());
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]