Kaydet (Commit) 7c528f40 authored tarafından Markus Mohrhard's avatar Markus Mohrhard

one more improvement around cond format rendering, fdo#57896

Change-Id: I5eb267ec2d1666edd53f5b9d58fd2a0cec044aa1
üst 53a5bf75
......@@ -1973,7 +1973,10 @@ void ScConditionalFormat::dumpInfo(rtl::OUStringBuffer& rBuf) const
void ScConditionalFormat::DoRepaint( const ScRange* pModified )
{
if(pModified)
pDoc->RepaintRange(*pModified);
{
if(maRanges.Intersects(*pModified))
pDoc->RepaintRange(*pModified);
}
else
{
// all conditional format cells
......
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