Kaydet (Commit) 60747a3c authored tarafından Markus Mohrhard's avatar Markus Mohrhard Kaydeden (comit) Markus Mohrhard

fix transparence of bubble color

Change-Id: Ib2edf99ff4f48c12a946878740ad5d64d7deffb2
üst c219d1b9
......@@ -547,7 +547,7 @@ void DummyCircle::render()
if(itr != maProperties.end())
{
sal_Int32 nTrans = itr->second.get<sal_Int32>();
nAlpha = static_cast<sal_uInt8>(nTrans & 0xFF);
nAlpha = 255 - static_cast<sal_uInt8>(nTrans & 0xFF);
}
itr = maProperties.find("FillColor");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment