Changed: use trimSeparators to remove spaces and tabs in html styles args values

--HG--
branch : patches-from-atys
hg/hotfix/patches-from-atys
ulukyn 6 years ago
parent 724158c74c
commit c7bdaf513c

@ -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);
}
}

Loading…
Cancel
Save