From 762e3b603e1f510264aed035959c5a10ead42438 Mon Sep 17 00:00:00 2001 From: Nuno Date: Wed, 12 May 2021 18:12:52 +0200 Subject: [PATCH] -ryzom-modulate-bgcolor can be false --- code/nel/src/gui/group_html.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/nel/src/gui/group_html.cpp b/code/nel/src/gui/group_html.cpp index 29e752da4..6274d67e5 100644 --- a/code/nel/src/gui/group_html.cpp +++ b/code/nel/src/gui/group_html.cpp @@ -6830,6 +6830,9 @@ namespace NLGUI // setting ModulateGlobalColor must be after addImageDownload if (_Style.checkStyle("-ryzom-modulate-bgcolor", "true")) table->setModulateGlobalColor(true); + else if (_Style.checkStyle("-ryzom-modulate-bgcolor", "false")) + table->setModulateGlobalColor(false); + table->setMarginLeft(getIndent()); addHtmlGroup (table, 0);