From 67dcbf2e278ddf665586c7de67f646136e232ff0 Mon Sep 17 00:00:00 2001
From: Yann Leboulanger <asterix@lagaule.org>
Date: Thu, 31 Mar 2005 12:44:42 +0000
Subject: [PATCH] add spaces between icon and text in status combobox

---
 plugins/gtkgui/roster_window.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/plugins/gtkgui/roster_window.py b/plugins/gtkgui/roster_window.py
index ed73ae5e77..fe7c89f513 100644
--- a/plugins/gtkgui/roster_window.py
+++ b/plugins/gtkgui/roster_window.py
@@ -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']:
-- 
GitLab