From 914935f86426fa7b9f969c775ae2e7466d9d6586 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20H=C3=B6rist?= Date: Thu, 27 Jul 2017 21:50:38 +0200 Subject: [PATCH] Use right amount of arguments on pack_start --- gajim/gtkgui_helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gajim/gtkgui_helpers.py b/gajim/gtkgui_helpers.py index 6a069e822..e548ef0c3 100644 --- a/gajim/gtkgui_helpers.py +++ b/gajim/gtkgui_helpers.py @@ -856,7 +856,7 @@ def create_list_multi(value_list, selected_values=None): col = Gtk.TreeViewColumn() treeview.append_column(col) cell = Gtk.CellRendererText() - col.pack_start(cell, True, True, 0) + col.pack_start(cell, True) col.set_attributes(cell, text=0) for value in value_list: iter = liststore.append(value)