From 8ab4221593b781e44387e4d5328ecf7a89f8fa7d Mon Sep 17 00:00:00 2001 From: ulukyn Date: Fri, 29 Jun 2018 16:04:29 +0200 Subject: [PATCH] Changed: use trimSeparators to remove spaces and tabs in html styles args values --HG-- branch : compatibility-develop --- code/nel/src/gui/group_html.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/nel/src/gui/group_html.cpp b/code/nel/src/gui/group_html.cpp index 00ebba9d3..d4422174e 100644 --- a/code/nel/src/gui/group_html.cpp +++ b/code/nel/src/gui/group_html.cpp @@ -948,7 +948,7 @@ namespace NLGUI string fullstyle = style[1]; for (uint j=2; j < style.size(); j++) fullstyle += ":"+style[j]; - styles[trim(style[0])] = trim(fullstyle); + styles[trim(style[0])] = trimSeparators(fullstyle); } }