forked from AuroraMiddleware/gtk
Bug 588199 - GtkTreeView rendering glitch while using a default ...
Contrary to what was believed before, do_validate_rows() does need to queue a normal resize (including a redraw) when it has to. The redraw is required because of the size of the tree has changed because new row(s) have been validated.
This commit is contained in:
parent
de1c79c721
commit
786b3914cd
@ -6246,7 +6246,7 @@ do_validate_rows (GtkTreeView *tree_view, gboolean queue_resize)
|
||||
gtk_adjustment_changed (tree_view->priv->vadjustment);
|
||||
|
||||
if (queue_resize)
|
||||
gtk_widget_queue_resize_no_redraw (GTK_WIDGET (tree_view));
|
||||
gtk_widget_queue_resize (GTK_WIDGET (tree_view));
|
||||
}
|
||||
|
||||
if (path) gtk_tree_path_free (path);
|
||||
|
Loading…
Reference in New Issue
Block a user