fix stupid thinko.

2005-10-28  Kristian Rietveld  <kris@gtk.org>

	* gtk/gtktreemodelfilter.c (gtk_tree_model_filter_row_deleted): fix
	stupid thinko.
This commit is contained in:
Kristian Rietveld 2005-10-28 17:15:15 +00:00 committed by Kristian Rietveld
parent 04f94a98f2
commit c50df41b52
3 changed files with 11 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2005-10-28 Kristian Rietveld <kris@gtk.org>
* gtk/gtktreemodelfilter.c (gtk_tree_model_filter_row_deleted): fix
stupid thinko.
2005-10-28 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkdnd.c (gtk_drag_get_cursor): Fix the anchor of the default

View File

@ -1,3 +1,8 @@
2005-10-28 Kristian Rietveld <kris@gtk.org>
* gtk/gtktreemodelfilter.c (gtk_tree_model_filter_row_deleted): fix
stupid thinko.
2005-10-28 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkdnd.c (gtk_drag_get_cursor): Fix the anchor of the default

View File

@ -1709,7 +1709,7 @@ gtk_tree_model_filter_row_deleted (GtkTreeModel *c_model,
break;
}
if (v_indices[level] > c_indices[level])
if (common_prefix && v_indices[level] > c_indices[level])
(v_indices[level])--;
}
}