Make fixed height mode handle insertions. (135955, Michael Vogt, testcase

Fri Aug 13 01:06:56 2004  Matthias Clasen  <maclas@gmx.de>

	* gtk/gtktreeview.c (gtk_tree_view_row_inserted):
	Make fixed height mode handle insertions.  (135955,
	Michael Vogt, testcase by Tim-Philipp Müller, fix by
	Pawel Salek)
This commit is contained in:
Matthias Clasen 2004-08-13 05:11:24 +00:00 committed by Matthias Clasen
parent 4460970715
commit e1e86b06a1
5 changed files with 32 additions and 1 deletions

View File

@ -1,3 +1,10 @@
Fri Aug 13 01:06:56 2004 Matthias Clasen <maclas@gmx.de>
* gtk/gtktreeview.c (gtk_tree_view_row_inserted):
Make fixed height mode handle insertions. (#135955,
Michael Vogt, testcase by Tim-Philipp Müller, fix by
Pawel Salek)
Fri Aug 13 00:40:18 2004 Matthias Clasen <maclas@gmx.de>
* gtk/gtkhandlebox.c: Add missing include.

View File

@ -1,3 +1,10 @@
Fri Aug 13 01:06:56 2004 Matthias Clasen <maclas@gmx.de>
* gtk/gtktreeview.c (gtk_tree_view_row_inserted):
Make fixed height mode handle insertions. (#135955,
Michael Vogt, testcase by Tim-Philipp Müller, fix by
Pawel Salek)
Fri Aug 13 00:40:18 2004 Matthias Clasen <maclas@gmx.de>
* gtk/gtkhandlebox.c: Add missing include.

View File

@ -1,3 +1,10 @@
Fri Aug 13 01:06:56 2004 Matthias Clasen <maclas@gmx.de>
* gtk/gtktreeview.c (gtk_tree_view_row_inserted):
Make fixed height mode handle insertions. (#135955,
Michael Vogt, testcase by Tim-Philipp Müller, fix by
Pawel Salek)
Fri Aug 13 00:40:18 2004 Matthias Clasen <maclas@gmx.de>
* gtk/gtkhandlebox.c: Add missing include.

View File

@ -1,3 +1,10 @@
Fri Aug 13 01:06:56 2004 Matthias Clasen <maclas@gmx.de>
* gtk/gtktreeview.c (gtk_tree_view_row_inserted):
Make fixed height mode handle insertions. (#135955,
Michael Vogt, testcase by Tim-Philipp Müller, fix by
Pawel Salek)
Fri Aug 13 00:40:18 2004 Matthias Clasen <maclas@gmx.de>
* gtk/gtkhandlebox.c: Add missing include.

View File

@ -7157,7 +7157,10 @@ gtk_tree_view_row_inserted (GtkTreeModel *model,
}
done:
install_presize_handler (tree_view);
if (height > 0)
gtk_widget_queue_resize (GTK_WIDGET (tree_view));
else
install_presize_handler (tree_view);
if (free_path)
gtk_tree_path_free (path);
}