GNOME Bugzilla – Bug 591733
pango_layout_move_cursor_visually() bug?
Last modified: 2018-05-22 12:52:20 UTC
Reported on the mailing list: I find a bug of "pango_layout_move_cursor_visually": the layout text is "012345" , I move cursor from (index:100, trailing:100) to left. I first get (5, 5). I think it should be (5, 1), that is the rightest position. the code is: int index = 100; int trailing = 100; int newIndex = 5; int newTrailing = 5; while (newIndex != -1) { pango_layout_move_cursor_visually (layout, true, index, trailing, -1, &newIndex, &newTrailing); MyTrace ("[%d, %d]\n", newIndex, newTrailing); index = newIndex; trailing = newTrailing ; }
-- GitLab Migration Automatic Message -- This bug has been migrated to GNOME's GitLab instance and has been closed from further activity. You can subscribe and participate further through the new bug through this link to our GitLab instance: https://gitlab.gnome.org/GNOME/pango/issues/161.