summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorTomaž Vajngerl <tomaz.vajngerl@collabora.co.uk>2019-09-05 12:12:32 +0200
committerTomaž Vajngerl <quikee@gmail.com>2019-09-05 16:56:43 +0200
commit7af38dd4fdaff8ae2ca12e2fe7e2319bcc6bdeba (patch)
tree708131bf36b3bff9044fc1be27913079b5620c36 /sw
parentcecbf4e87f6b9229d87b65d67575861ee61b0cdb (diff)
lok: Don't send any cursor changes for table in Writer
As the table column and row resize and select when using it over LOKit, are using the markers and the mouse border changes weren't working at all, we can safely turn the mouse cursor changes off. Change-Id: I4c898da1db39c91a9178115dcd1e0c43eb7c36bf Reviewed-on: https://gerrit.libreoffice.org/78644 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'sw')
-rw-r--r--sw/source/uibase/docvw/edtwin.cxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/sw/source/uibase/docvw/edtwin.cxx b/sw/source/uibase/docvw/edtwin.cxx
index 214a90c26e9c..9970b8e48fcf 100644
--- a/sw/source/uibase/docvw/edtwin.cxx
+++ b/sw/source/uibase/docvw/edtwin.cxx
@@ -3732,6 +3732,9 @@ bool SwEditWin::changeMousePointer(Point const & rDocPoint)
{
SwWrtShell & rShell = m_rView.GetWrtShell();
+ if (comphelper::LibreOfficeKit::isActive())
+ return false;
+
SwTab nMouseTabCol;
if ( SwTab::COL_NONE != (nMouseTabCol = rShell.WhichMouseTabCol( rDocPoint ) ) &&
!rShell.IsObjSelectable( rDocPoint ) )