[Libreoffice-commits] core.git: sc/source

Dennis Francis (via logerrit) logerrit at kemper.freedesktop.org
Thu Jul 16 20:51:49 UTC 2020


 sc/source/ui/docshell/docfunc.cxx |    5 +++++
 1 file changed, 5 insertions(+)

New commits:
commit f9cb1968433121a4ef4953f198f645a56a3d786a
Author:     Dennis Francis <dennis.francis at collabora.com>
AuthorDate: Thu Jul 16 13:40:39 2020 +0530
Commit:     Dennis Francis <dennis.francis at collabora.com>
CommitDate: Thu Jul 16 22:51:14 2020 +0200

    lokit: Add missing sheet-geometry row-size invalidation call
    
    Change-Id: I6e0c87de51fa64fd486c0d20bef65574fadd1560
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/98890
    Tested-by: Jenkins
    Reviewed-by: Dennis Francis <dennis.francis at collabora.com>

diff --git a/sc/source/ui/docshell/docfunc.cxx b/sc/source/ui/docshell/docfunc.cxx
index eae54450e608..587aeb18509e 100644
--- a/sc/source/ui/docshell/docfunc.cxx
+++ b/sc/source/ui/docshell/docfunc.cxx
@@ -179,7 +179,12 @@ bool ScDocFunc::AdjustRowHeight( const ScRange& rRange, bool bPaint )
                             PaintPartFlags::Grid | PaintPartFlags::Left);
 
     if (comphelper::LibreOfficeKit::isActive())
+    {
         ScTabViewShell::notifyAllViewsHeaderInvalidation(pSomeViewForThisDoc, ROW_HEADER, nTab);
+        ScTabViewShell::notifyAllViewsSheetGeomInvalidation(
+            pSomeViewForThisDoc, false /* bColumns */, true /* bRows */, true /* bSizes*/,
+            false /* bHidden */, false /* bFiltered */, false /* bGroups */, nTab);
+    }
 
     return bChanged;
 }


More information about the Libreoffice-commits mailing list