From: Lincoln de Sousa Date: Sat, 9 Aug 2008 20:10:18 +0000 (-0300) Subject: hidding the position column in the main treeview X-Git-Url: http://git.cascardo.eti.br/?p=cascardo%2Fmovie.git;a=commitdiff_plain;h=fbd6c525db0a7260f2db06b1447c2d2e27661f29 hidding the position column in the main treeview --- diff --git a/gzv.py b/gzv.py index 68e4d38..e58ab82 100644 --- a/gzv.py +++ b/gzv.py @@ -156,6 +156,7 @@ class Gzv(GladeLoader): renderer = gtk.CellRendererText() column = gtk.TreeViewColumn(_('Position'), renderer, text=0) + column.set_property('visible', False) self.treeview.append_column(column) renderer = gtk.CellRendererText()