From: Daniel Carl Date: Tue, 8 May 2018 21:41:01 +0000 (+0200) Subject: Set tree model direct to tree view. X-Git-Url: https://git.owens.tech///git?a=commitdiff_plain;h=7127741ea6be3c17eba5844c9a41c423c6f2c43c;p=vimb.git Set tree model direct to tree view. --- diff --git a/src/completion.c b/src/completion.c index 2532f85..3b27b6c 100644 --- a/src/completion.c +++ b/src/completion.c @@ -96,7 +96,7 @@ gboolean completion_create(Client *c, GtkTreeModel *model, /* prepare the tree view */ comp->win = gtk_scrolled_window_new(NULL, NULL); - comp->tree = gtk_tree_view_new(); + comp->tree = gtk_tree_view_new_with_model(model); gtk_style_context_add_provider(gtk_widget_get_style_context(comp->tree), GTK_STYLE_PROVIDER(vb.style_provider), @@ -109,7 +109,6 @@ gboolean completion_create(Client *c, GtkTreeModel *model, gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(comp->tree), FALSE); /* we have only on line per item so we can use the faster fixed heigh mode */ gtk_tree_view_set_fixed_height_mode(GTK_TREE_VIEW(comp->tree), TRUE); - gtk_tree_view_set_model(GTK_TREE_VIEW(comp->tree), model); g_object_unref(model); /* prepare the selection */