summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXisco Fauli <xiscofauli@libreoffice.org>2022-09-07 13:32:21 +0200
committerXisco Fauli <xiscofauli@libreoffice.org>2022-09-08 10:32:27 +0200
commit938d17969cd0fd29cf4edd1e0365dd784ca59d8b (patch)
tree1bf9b8536f1694be06b76caf26cf01bcd3e1ebe6
parentpython3: upgrade to release 3.8.13 (diff)
downloadcore-938d17969cd0fd29cf4edd1e0365dd784ca59d8b.tar.gz
core-938d17969cd0fd29cf4edd1e0365dd784ca59d8b.zip
tdf#150832: Revert "tdf#150034 very slow opening pathological chart"
This reverts commit 613f6e75fbfcc024fc9c3732261cbf2cda6f4ad8. Reason for revert: it seems all charts in XLS files are affected. At least I could reproduce it with all the XLS files I tested it with. Change-Id: I68d13d6f609521ce6af759cf25249656176b66cd Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139562 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
-rw-r--r--svx/source/svdraw/svdpage.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/svx/source/svdraw/svdpage.cxx b/svx/source/svdraw/svdpage.cxx
index ef1892990277..b7aa8777e39c 100644
--- a/svx/source/svdraw/svdpage.cxx
+++ b/svx/source/svdraw/svdpage.cxx
@@ -295,8 +295,7 @@ void SdrObjList::NbcInsertObject(SdrObject* pObj, size_t nPos)
impChildInserted(*pObj);
if (!mbRectsDirty) {
- maSdrObjListOutRect.Union(pObj->GetCurrentBoundRect());
- maSdrObjListSnapRect.Union(pObj->GetSnapRect());
+ mbRectsDirty = true;
}
pObj->InsertedStateChange(); // calls the UserCall (among others)
}