Make selecting the last character work again

This broke when I added link support. git bisect helped to track it
down.
This commit is contained in:
Matthias Clasen 2009-10-09 07:08:54 +02:00
parent b3b26b517d
commit 088baaec31

View File

@ -3841,6 +3841,7 @@ get_layout_index (GtkLabel *label,
gint trailing = 0;
const gchar *cluster;
const gchar *cluster_end;
gboolean inside;
*index = 0;
@ -3851,24 +3852,21 @@ get_layout_index (GtkLabel *label,
x *= PANGO_SCALE;
y *= PANGO_SCALE;
if (pango_layout_xy_to_index (label->layout,
x, y,
index, &trailing))
inside = pango_layout_xy_to_index (label->layout,
x, y,
index, &trailing);
cluster = label->text + *index;
cluster_end = cluster;
while (trailing)
{
cluster = label->text + *index;
cluster_end = cluster;
while (trailing)
{
cluster_end = g_utf8_next_char (cluster_end);
--trailing;
}
*index += (cluster_end - cluster);
return TRUE;
cluster_end = g_utf8_next_char (cluster_end);
--trailing;
}
return FALSE;
*index += (cluster_end - cluster);
return inside;
}
static void