Skeleton group chat activity.

Fix positioning in the activity bar.
This commit is contained in:
Marco Pesenti Gritti
2006-08-19 11:54:41 +02:00
parent 5a2653bf1e
commit f8c4f0bd66
9 changed files with 33 additions and 4 deletions
+4 -1
View File
@@ -21,9 +21,12 @@ class IconCache(gobject.GObject):
icon_file.close()
if color != None:
style = '.fill-color {fill: %s; stroke: %s;}' % (color, color)
style = '.fill-color {fill: %s;}' % (color)
data = re.sub('\.fill-color \{.*\}', style, data)
style = '.fill-and-stroke-color {fill: %s; stroke: %s;}' % (color, color)
data = re.sub('\.fill-and-stroke-color \{.*\}', style, data)
loader = gtk.gdk.pixbuf_loader_new_with_mime_type('image/svg-xml')
loader.set_size(size, size)
loader.write(data)