hidding the position column in the main treeview
authorLincoln de Sousa <lincoln@minaslivre.org>
Sat, 9 Aug 2008 20:10:18 +0000 (17:10 -0300)
committerLincoln de Sousa <lincoln@minaslivre.org>
Sat, 9 Aug 2008 20:10:18 +0000 (17:10 -0300)
gzv.py

diff --git a/gzv.py b/gzv.py
index 68e4d38..e58ab82 100644 (file)
--- 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()