Use right amount of arguments on pack_start

This commit is contained in:
Philipp Hörist 2017-07-27 21:50:38 +02:00
parent f449acd815
commit 914935f864
1 changed files with 1 additions and 1 deletions

View File

@ -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)