aboutsummaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorAneesh Kumar K.V <aneesh.kumar@gmail.com>2006-02-28 20:10:28 +0530
committerJunio C Hamano <junkio@cox.net>2006-02-28 11:02:10 -0800
commitd82343b93860348215db0c7267bc051e5f80aefa (patch)
treedbdf8be79da3c158376d3bfd3ca9a2ff9b4ff9d1 /contrib
parent0852694ba432aafff5d7619e3acc30f30f2339b7 (diff)
downloadgit-d82343b93860348215db0c7267bc051e5f80aefa.tar.gz
git-d82343b93860348215db0c7267bc051e5f80aefa.tar.xz
gitview: Set the default width of graph cell
Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@gmail.com> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/gitview/gitview3
1 files changed, 3 insertions, 0 deletions
diff --git a/contrib/gitview/gitview b/contrib/gitview/gitview
index 47ecaa356..ea05cd424 100755
--- a/contrib/gitview/gitview
+++ b/contrib/gitview/gitview
@@ -526,6 +526,9 @@ class GitView:
self.treeview.show()
cell = CellRendererGraph()
+ # Set the default width to 265
+ # This make sure that we have nice display with large tag names
+ cell.set_property("width", 265)
column = gtk.TreeViewColumn()
column.set_resizable(True)
column.pack_start(cell, expand=True)