# HG changeset patch # User Mark Doliner # Date 1165859320 0 # Node ID bbeb1dfcb25b2bc2750be1fe2c04d6d1ca1bf843 # Parent 0f512485524089193d1a5719a4bac72210c3cca7 [gaim-migrate @ 17961] XEP-0084 and XEP-0153 both say, "the image height and width SHOULD be between thirty-two (32) and ninety-six (96) pixels." I realize this is a "should" and not a "must," but I think it makes sense for us to follow it. Especially if we're already imposing the upper-bound. Hey, we should add a maximum filesize to this icon_spec struct. committer: Tailor Script diff -r 0f5124855240 -r bbeb1dfcb25b libgaim/protocols/jabber/jabber.c --- a/libgaim/protocols/jabber/jabber.c Mon Dec 11 13:32:53 2006 +0000 +++ b/libgaim/protocols/jabber/jabber.c Mon Dec 11 17:48:40 2006 +0000 @@ -1852,7 +1852,7 @@ OPT_PROTO_CHAT_TOPIC | OPT_PROTO_UNIQUE_CHATNAME | OPT_PROTO_MAIL_CHECK, NULL, /* user_splits */ NULL, /* protocol_options */ - {"png,gif,jpeg", 0, 0, 96, 96, GAIM_ICON_SCALE_SEND | GAIM_ICON_SCALE_DISPLAY}, /* icon_spec */ + {"png,gif,jpeg", 32, 32, 96, 96, GAIM_ICON_SCALE_SEND | GAIM_ICON_SCALE_DISPLAY}, /* icon_spec */ jabber_list_icon, /* list_icon */ jabber_list_emblems, /* list_emblems */ jabber_status_text, /* status_text */