GtkListBox: No need to manually clamp adjustment to focus

Now that we use real widgets for rows the focus_vadjustment is
enough.
This commit is contained in:
Alexander Larsson 2013-06-10 14:41:51 +02:00
parent 932535d444
commit 157102aa73

View File

@ -781,14 +781,6 @@ gtk_list_box_update_cursor (GtkListBox *list_box,
priv->cursor_row = row;
gtk_widget_grab_focus (GTK_WIDGET (row));
gtk_widget_queue_draw (GTK_WIDGET (row));
if (row != NULL && priv->adjustment != NULL)
{
GtkAllocation allocation;
gtk_widget_get_allocation (GTK_WIDGET (list_box), &allocation);
gtk_adjustment_clamp_page (priv->adjustment,
priv->cursor_row->priv->y + allocation.y,
priv->cursor_row->priv->y + allocation.y + priv->cursor_row->priv->height);
}
_gtk_list_box_accessible_update_cursor (list_box, row);
}