pathbar: fix a copy/paste error from last commit

We need to update the child pointer to the current iterator when going
trough the button list.
This commit is contained in:
Cosimo Cecchi 2012-05-02 11:49:40 -04:00
parent 0743cef50d
commit aeb5cb2caa

View File

@ -700,14 +700,16 @@ gtk_path_bar_size_allocate (GtkWidget *widget,
/* Now we go hide all the widgets that don't fit */
while (list)
{
child = BUTTON_DATA (list->data)->button;
needs_reorder |= gtk_widget_get_child_visible (child) == TRUE;
gtk_widget_set_child_visible (BUTTON_DATA (list->data)->button, FALSE);
gtk_widget_set_child_visible (child, FALSE);
list = list->prev;
}
for (list = first_button->next; list; list = list->next)
{
child = BUTTON_DATA (list->data)->button;
needs_reorder |= gtk_widget_get_child_visible (child) == TRUE;
gtk_widget_set_child_visible (BUTTON_DATA (list->data)->button, FALSE);
gtk_widget_set_child_visible (child, FALSE);
}
if (need_sliders || path_bar->fake_root)