[GTKUI] Add padding to count in sidebar

This commit is contained in:
Calum Lind 2014-09-01 22:24:19 +01:00
parent 430f9c01d7
commit 4f3fcac2bf
1 changed files with 1 additions and 0 deletions

View File

@ -78,6 +78,7 @@ class FilterTreeView(component.Component):
# count cell
self.cell_count = gtk.CellRendererText()
self.cell_count.set_property('xalign', 1.0)
self.cell_count.set_padding(3, 0)
column.pack_start(self.cell_count, expand=False)
self.treeview.append_column(column)