Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYann Leboulanger <asterix@lagaule.org>2009-07-28 19:04:57 +0400
committerYann Leboulanger <asterix@lagaule.org>2009-07-28 19:04:57 +0400
commit4dbd848f8b742f435fe51462e540ec5571aeb40e (patch)
tree26cd4516c207ec8fa2c1f75aad3d448cf3bcb807
parent99e89bfb533dc13d9740261fbf6db93b7ef74bd9 (diff)
always build emoticons menu with 16x16 images. Fixes #3125
-rw-r--r--src/gajim.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gajim.py b/src/gajim.py
index 4797fd8e7..228abd1e9 100644
--- a/src/gajim.py
+++ b/src/gajim.py
@@ -2725,7 +2725,7 @@ class Interface:
if emot_file.endswith('.gif'):
pix = gtk.gdk.PixbufAnimation(emot_file)
else:
- pix = gtk.gdk.pixbuf_new_from_file(emot_file)
+ pix = gtk.gdk.pixbuf_new_from_file_at_size(emot_file, 16, 16)
self.emoticons_images.append((emot, pix))
self.emoticons[emot.upper()] = emot_file
del emoticons