add spaces between icon and text in status combobox

This commit is contained in:
Yann Leboulanger 2005-03-31 12:44:42 +00:00
parent 704bfc3a2a
commit 67dcbf2e27
1 changed files with 1 additions and 0 deletions

View File

@ -1305,6 +1305,7 @@ class Roster_window:
self.cb.pack_start(cell, False)
self.cb.add_attribute(cell, 'image', 1)
cell = gtk.CellRendererText()
cell.set_property('xpad', 8)
self.cb.pack_start(cell, True)
self.cb.add_attribute(cell, 'text', 0)
for status in ['online', 'away', 'xa', 'dnd', 'invisible', 'offline']: