diff options
author | merttumer <mert.tumer@collabora.com> | 2021-03-11 09:52:00 +0300 |
---|---|---|
committer | Mert Tumer <mert.tumer@collabora.com> | 2021-04-20 04:32:58 +0200 |
commit | 836afbb007e7f34e3587de34fdf1fbb2371fd60b (patch) | |
tree | 9db3001947749d67cbc92f2396417680b1be95c0 /svx | |
parent | fa8991840e122303bf9fa43d36864dd29529b0d2 (diff) |
Hide GluePoints in LOK
Change-Id: Ibf6bba4cdc69bd8479ccc08b5d9695253ef81890
Signed-off-by: merttumer <mert.tumer@collabora.com>
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/112314
Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com>
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/114028
Tested-by: Jenkins
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/sdr/contact/objectcontactofpageview.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/svx/source/sdr/contact/objectcontactofpageview.cxx b/svx/source/sdr/contact/objectcontactofpageview.cxx index 364b0d90bfea..41717d276381 100644 --- a/svx/source/sdr/contact/objectcontactofpageview.cxx +++ b/svx/source/sdr/contact/objectcontactofpageview.cxx @@ -340,7 +340,8 @@ namespace sdr::contact // 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. |