From b3b231b7b44fb81efd2ee72cb08deec3997f6431 Mon Sep 17 00:00:00 2001 From: merttumer Date: Thu, 11 Mar 2021 09:52:00 +0300 Subject: Hide GluePoints in LOK Change-Id: Ibf6bba4cdc69bd8479ccc08b5d9695253ef81890 Signed-off-by: merttumer Reviewed-on: https://gerrit.libreoffice.org/c/core/+/112314 Tested-by: Jenkins CollaboraOffice --- svx/source/sdr/contact/objectcontactofpageview.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/svx/source/sdr/contact/objectcontactofpageview.cxx b/svx/source/sdr/contact/objectcontactofpageview.cxx index 5838a1610e0f..d0756018d7b2 100644 --- a/svx/source/sdr/contact/objectcontactofpageview.cxx +++ b/svx/source/sdr/contact/objectcontactofpageview.cxx @@ -348,7 +348,8 @@ namespace sdr // Get info about the need to visualize GluePoints bool ObjectContactOfPageView::AreGluePointsVisible() const { - return GetPageWindow().GetPageView().GetView().ImpIsGlueVisible(); + bool bTiledRendering = comphelper::LibreOfficeKit::isActive(); + return !bTiledRendering && GetPageWindow().GetPageView().GetView().ImpIsGlueVisible(); } // check if text animation is allowed. -- cgit