treeview: Remove a useless check

This commit is contained in:
Timm Bäder 2019-04-28 06:50:57 +02:00
parent 6c8a5f5e2f
commit f4cf43359d

View File

@ -2526,10 +2526,7 @@ gtk_tree_view_size_allocate_columns (GtkWidget *widget)
* which changes the total width of the tree view. This is of
* importance for getting the horizontal scroll bar right.
*/
if (tree_view->priv->width != width)
{
tree_view->priv->width = width;
}
tree_view->priv->width = width;
}
/* GtkWidget::size_allocate helper */