diff options
author | Tamás Zolnai <tamas.zolnai@collabora.com> | 2019-09-02 18:23:19 +0200 |
---|---|---|
committer | Tamás Zolnai <tamas.zolnai@collabora.com> | 2019-09-02 19:27:35 +0200 |
commit | e015ce45c299bec5d4a571e127ca7422caea523b (patch) | |
tree | c4e37bc5cd4b01979ced76afd248f9f48f9c9b6a | |
parent | e161826d5766cfb0816f666f6f65a7fb25d78f33 (diff) |
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@collabora.com>
Tested-by: Tamás Zolnai <tamas.zolnai@collabora.com>
-rw-r--r-- | sw/source/uibase/docvw/edtwin.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
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 ); } |