[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-6.4' - svx/source

merttumer (via logerrit) logerrit at kemper.freedesktop.org
Fri Apr 9 05:09:54 UTC 2021


 svx/source/sdr/contact/objectcontactofpageview.cxx |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit b3b231b7b44fb81efd2ee72cb08deec3997f6431
Author:     merttumer <mert.tumer at collabora.com>
AuthorDate: Thu Mar 11 09:52:00 2021 +0300
Commit:     Mert Tumer <mert.tumer at collabora.com>
CommitDate: Fri Apr 9 07:09:18 2021 +0200

    Hide GluePoints in LOK
    
    Change-Id: Ibf6bba4cdc69bd8479ccc08b5d9695253ef81890
    Signed-off-by: merttumer <mert.tumer at collabora.com>
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/112314
    Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice at gmail.com>

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.


More information about the Libreoffice-commits mailing list