In render_para() function, which is called for every text line that
needs to be drawn.
https://bugzilla.gnome.org/show_bug.cgi?id=783397
PangoLayout *layout = line_display->layout;
int byte_offset = 0;
PangoLayoutIter *iter;
- PangoRectangle layout_logical;
int screen_width;
GdkRGBA selection;
gboolean first = TRUE;
GtkCssNode *selection_node;
iter = pango_layout_get_iter (layout);
-
- pango_layout_iter_get_layout_extents (iter, NULL, &layout_logical);
-
- /* Adjust for margins */
-
- layout_logical.x += line_display->x_offset * PANGO_SCALE;
- layout_logical.y += line_display->top_margin * PANGO_SCALE;
-
screen_width = line_display->total_width;
context = gtk_widget_get_style_context (text_renderer->widget);