diff --git a/src/gajim.py b/src/gajim.py
index a8f0f971fe28d6f6388ee3dcfec9abbb3bed795c..1f114563dc94476597f53d31eadff4545206edc8 100644
--- a/src/gajim.py
+++ b/src/gajim.py
@@ -2713,7 +2713,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