[vte/wip/egmont/bidi: 32/107] fix cjk positioning
- From: Egmont Koblinger <egmontkob src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [vte/wip/egmont/bidi: 32/107] fix cjk positioning
- Date: Thu, 30 May 2019 13:44:14 +0000 (UTC)
commit 4baf8eac229961b2edaca43a59e0ca88a2411d24
Author: Egmont Koblinger <egmont gmail com>
Date: Fri Aug 24 11:38:27 2018 +0200
fix cjk positioning
src/vte.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/src/vte.cc b/src/vte.cc
index ff68ea16..e575f1aa 100644
--- a/src/vte.cc
+++ b/src/vte.cc
@@ -9061,7 +9061,7 @@ Terminal::draw_rows(VteScreen *screen_,
g_assert_cmpint (item_count, <, column_count);
items[item_count].c = c;
items[item_count].columns = j - col;
- items[item_count].x = col * column_width;
+ items[item_count].x = (col - (bidimap[i].vis_rtl ? j - col - 1 : 0)) * column_width;
items[item_count].y = y;
items[item_count].mirror = bidimap[i].vis_rtl;
items[item_count].box_mirror = !!(row_data->attr.bidi_flags & VTE_BIDI_BOX_MIRROR);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]