2007-02-18 Matthias Clasen <mclasen@redhat.com>
* gtk/gtktextlayout.c (gtk_text_layout_move_iter_visually):
Ignore invisible text when going to end of the previous line.
(#382565)
svn path=/trunk/; revision=17328
+2007-02-18 Matthias Clasen <mclasen@redhat.com>
+
+ * gtk/gtktextlayout.c (gtk_text_layout_move_iter_visually):
+ Ignore invisible text when going to end of the previous line.
+ (#382565)
+
2007-02-18 Richard Hult <richard@imendio.com>
* gdk/quartz/gdkwindow-quartz.c:
gtk_text_layout_free_line_display (layout, display);
display = gtk_text_layout_get_line_display (layout, line, FALSE);
- new_index = _gtk_text_line_byte_count (line);
+ gtk_text_iter_forward_to_line_end (&lineiter);
+ new_index = gtk_text_iter_get_visible_line_index (&lineiter);
}
else if (new_index > byte_count)
{