From 7bc796e03eb1039afb503de2187c379f6349054f Mon Sep 17 00:00:00 2001 From: Richard Marti Date: Fri, 28 Sep 2018 13:12:25 +0200 Subject: [PATCH] Bug 1494925 - Fix the squashed operator icons in chat. r=jorgk --- mail/components/im/content/imconversation.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mail/components/im/content/imconversation.xml b/mail/components/im/content/imconversation.xml index 7e5eb0a8bf..cf33a4b146 100644 --- a/mail/components/im/content/imconversation.xml +++ b/mail/components/im/content/imconversation.xml @@ -1052,7 +1052,7 @@ if (image) aItem.firstChild.setAttribute("src", "chrome://messenger/skin/" + image + ".png"); else - aItem.firstChild.removeAttribute("image"); + aItem.firstChild.removeAttribute("src"); ]]> @@ -1125,6 +1125,7 @@ var style = "color: hsl(" + color + ", 100%, 40%);"; item.colorStyle = style; item.setAttribute("style", style); + item.setAttribute("align", "center"); if (!this._isBuddyActive(name)) item.setAttribute("inactive", "true"); item.color = color;