From 1a128ac26987316adf71be909a2de095e345e944 Mon Sep 17 00:00:00 2001 From: ulukyn Date: Tue, 12 Jun 2018 13:39:33 +0200 Subject: [PATCH] Added: Diplay:inline-block option to style of div in group_html --HG-- branch : develop --- code/nel/src/gui/group_html.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/nel/src/gui/group_html.cpp b/code/nel/src/gui/group_html.cpp index c3494028c..e0ed401ce 100644 --- a/code/nel/src/gui/group_html.cpp +++ b/code/nel/src/gui/group_html.cpp @@ -1570,6 +1570,8 @@ namespace NLGUI { if ((*it).first == "template") templateName = (*it).second; + else if ((*it).first == "display" && (*it).second == "inline-block") + _BlockLevelElement.back() = false; else tmplParams.push_back(TTmplParam((*it).first, (*it).second)); }