[Libreoffice-commits] core.git: sw/source
Tamás Zolnai (via logerrit)
logerrit at kemper.freedesktop.org
Mon Sep 2 17:28:14 UTC 2019
sw/source/uibase/docvw/edtwin.cxx | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
New commits:
commit e015ce45c299bec5d4a571e127ca7422caea523b
Author: Tamás Zolnai <tamas.zolnai at collabora.com>
AuthorDate: Mon Sep 2 18:23:19 2019 +0200
Commit: Tamás Zolnai <tamas.zolnai at collabora.com>
CommitDate: Mon Sep 2 19:27:35 2019 +0200
lok: Don't change mouse pointer when hovering over table borders
Change-Id: If6cc3698e6e7229a01d3147d79a587ead65f9b5e
Reviewed-on: https://gerrit.libreoffice.org/78411
Reviewed-by: Tamás Zolnai <tamas.zolnai at collabora.com>
Tested-by: Tamás Zolnai <tamas.zolnai at collabora.com>
diff --git a/sw/source/uibase/docvw/edtwin.cxx b/sw/source/uibase/docvw/edtwin.cxx
index 74c52d7ff03c..214a90c26e9c 100644
--- a/sw/source/uibase/docvw/edtwin.cxx
+++ b/sw/source/uibase/docvw/edtwin.cxx
@@ -3775,7 +3775,8 @@ bool SwEditWin::changeMousePointer(Point const & rDocPoint)
if ( PointerStyle::Null != nPointer &&
// i#35543 - Enhanced table selection is explicitly allowed in table mode
- ( !bChkTableSel || !rShell.IsTableMode() ) )
+ ( !bChkTableSel || !rShell.IsTableMode() ) &&
+ !comphelper::LibreOfficeKit::isActive() )
{
SetPointer( nPointer );
}
More information about the Libreoffice-commits
mailing list