projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0852694
)
gitview: Set the default width of graph cell
author
Aneesh Kumar K.V
<aneesh.kumar@gmail.com>
Tue, 28 Feb 2006 14:40:28 +0000
(20:10 +0530)
committer
Junio C Hamano
<junkio@cox.net>
Tue, 28 Feb 2006 19:02:10 +0000
(11:02 -0800)
Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
contrib/gitview/gitview
patch
|
blob
|
history
diff --git
a/contrib/gitview/gitview
b/contrib/gitview/gitview
index
47ecaa3
..
ea05cd4
100755
(executable)
--- 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)