diff options
-rw-r--r-- | sc/source/core/data/conditio.cxx | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/sc/source/core/data/conditio.cxx b/sc/source/core/data/conditio.cxx index 7a555a6fa4fa..60b470496c39 100644 --- a/sc/source/core/data/conditio.cxx +++ b/sc/source/core/data/conditio.cxx @@ -1486,7 +1486,15 @@ bool lcl_CutRange( ScRange& rRange, const ScRange& rOther ) void ScConditionalFormat::DoRepaint( const ScRange* pModified ) { - pDoc->RepaintRange(*pModified); + if(pModified) + pDoc->RepaintRange(*pModified); + else + { + // all conditional format cells + size_t n = maRanges.size(); + for(size_t i = 0; i < n; ++i) + pDoc->RepaintRange(*maRanges[i]); + } } void ScConditionalFormat::CompileAll() |