From c7bdaf513c95172b4a784132ec24b62ef58a131c 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 : patches-from-atys --- 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 68234c3d9..038ad352a 100644 --- a/code/nel/src/gui/group_html.cpp +++ b/code/nel/src/gui/group_html.cpp @@ -978,7 +978,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); } }