add spaces between icon and text in status combobox
This commit is contained in:
parent
704bfc3a2a
commit
67dcbf2e27
|
@ -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']:
|
||||
|
|
Loading…
Reference in New Issue