Fixed black background reading from styles

This commit is contained in:
r.kuznetsov 2017-07-27 15:13:22 +03:00 committed by Daria Volvenkova
parent 54d0f4a10e
commit 61b3323abb

View file

@ -481,13 +481,10 @@ void RulesHolder::InitBackgroundColors(ContainerProto const & cont)
{
// Take the color of the draw element
AreaRuleProto const & rule = de.area();
if (rule.color() != 0)
{
bgColorDefault = rule.color();
bgColorDefault = rule.color();
if (de.scale() != 0)
bgColorForScale.insert(make_pair(de.scale(), rule.color()));
}
if (de.scale() != 0)
bgColorForScale.insert(make_pair(de.scale(), rule.color()));
}
}
break;