From: Aneesh Kumar K.V Date: Tue, 28 Feb 2006 14:40:28 +0000 (+0530) Subject: gitview: Set the default width of graph cell X-Git-Tag: v1.3.0-rc1~115 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=d82343b93860348215db0c7267bc051e5f80aefa;p=git.git gitview: Set the default width of graph cell Signed-off-by: Aneesh Kumar K.V Signed-off-by: Junio C Hamano --- diff --git a/contrib/gitview/gitview b/contrib/gitview/gitview index 47ecaa35..ea05cd42 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)