[vte/wip/egmont/bidi: 73/76] fix block selection at cjks



commit fbcd4498648a9626fa1327e6f9f5b771e8de5b10
Author: Egmont Koblinger <egmont gmail com>
Date:   Mon Sep 24 13:34:57 2018 +0200

    fix block selection at cjks

 src/vte.cc | 5 +++++
 1 file changed, 5 insertions(+)
---
diff --git a/src/vte.cc b/src/vte.cc
index 1dcc9f8c..7c142fed 100644
--- a/src/vte.cc
+++ b/src/vte.cc
@@ -5475,12 +5475,17 @@ Terminal::cell_is_selected_vis(vte::grid::column_t col,
 {
         if (m_selection_block_mode) {
                 /* In block mode, make sure CJKs and TABs aren't cut in half. */
+                /* BiDi: convert to logical column... */
+                vte::base::BidiRow const* bidirow = m_ringview.get_row_map(row);
+                col = bidirow->vis2log(col);
                 while (col > 0) {
                         VteCell const* cell = find_charcell(col, row);
                         if (!cell || !cell->attr.fragment())
                                 break;
                         col--;
                 }
+                /* ... and back to visual. */
+                col = bidirow->log2vis(col);
                 return m_selection_resolved.box_contains (vte::grid::coords (row, col));
         } else {
                 /* BiDi: convert to logical column. */


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]