Fixed: style inheritance for underline, strikethrough

--HG--
branch : develop
This commit is contained in:
Nimetu 2018-08-18 09:16:14 +03:00
parent b86bf43090
commit adc89b3a82

View file

@ -6175,6 +6175,12 @@ namespace NLGUI
{
const CStyleParams current = _Style;
if (inherit)
{
style.Underlined = current.Underlined;
style.StrikeThrough = current.StrikeThrough;
}
float tmpf;
TStyle styles = parseStyle(styleString);
TStyle::iterator it;
@ -6396,11 +6402,6 @@ namespace NLGUI
style.GlobalColor = b;
}
}
if (inherit)
{
style.Underlined = current.Underlined || style.Underlined;
style.StrikeThrough = current.StrikeThrough || style.StrikeThrough;
}
}
// ***************************************************************************