[vte/wip/egmont/bidi: 33/76] prepare draw_cells for a likely forthcoming change
- From: Egmont Koblinger <egmontkob src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [vte/wip/egmont/bidi: 33/76] prepare draw_cells for a likely forthcoming change
- Date: Sun, 7 Oct 2018 13:05:47 +0000 (UTC)
commit e8251af0f83515cea0a2a848a0eab70cffe1dd35
Author: Egmont Koblinger <egmont gmail com>
Date: Fri Aug 24 12:27:18 2018 +0200
prepare draw_cells for a likely forthcoming change
src/vte.cc | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/vte.cc b/src/vte.cc
index e51450f5..17c51e6a 100644
--- a/src/vte.cc
+++ b/src/vte.cc
@@ -8373,7 +8373,7 @@ Terminal::draw_cells(struct _vte_draw_text_request *items,
columns = 0;
x = items[i].x;
y = items[i].y;
- /* Items are not necessarily contiguous. */
+ /* Items are not necessarily contiguous in LTR order. Combine the ones that form an LTR run.
*/
for (; i < n && items[i].x == x + columns * column_width && items[i].y == y; i++) {
columns += items[i].columns;
}
@@ -8414,7 +8414,7 @@ Terminal::draw_cells(struct _vte_draw_text_request *items,
do {
x = items[i].x;
y = items[i].y;
- /* Items are not necessarily contiguous. */
+ /* Items are not necessarily contiguous in LTR order. Combine the ones that form an
LTR run. */
for (columns = 0; i < n && items[i].x == x + columns * column_width && items[i].y ==
y; i++) {
columns += items[i].columns;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]