diff options
author | Szymon Kłos <szymon.klos@collabora.com> | 2019-05-29 15:29:04 +0200 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2019-09-18 22:53:21 +0200 |
commit | 8cd152e19ef7c6e2a45e67f937b690fd036bd549 (patch) | |
tree | b40f02ed8c4abd5e0985209ca1d62e089ff0ecce /svx/source/svdraw/svdmrkv.cxx | |
parent | b883e3d58db404a92bee044091b6cfd3892311c2 (diff) |
lok: send message when in place editing
Change-Id: I96d22cabeda1eb851116d556a5302394a0dd7f93
Reviewed-on: https://gerrit.libreoffice.org/73162
Reviewed-by: Andras Timar <andras.timar@collabora.com>
Tested-by: Andras Timar <andras.timar@collabora.com>
(cherry picked from commit 96ca927aca86b077b9914178e6c68ed0d4c0e3d1)
Reviewed-on: https://gerrit.libreoffice.org/79092
Tested-by: Jenkins
Diffstat (limited to 'svx/source/svdraw/svdmrkv.cxx')
-rw-r--r-- | svx/source/svdraw/svdmrkv.cxx | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/svx/source/svdraw/svdmrkv.cxx b/svx/source/svdraw/svdmrkv.cxx index 8359566cf6df..fecb8852659c 100644 --- a/svx/source/svdraw/svdmrkv.cxx +++ b/svx/source/svdraw/svdmrkv.cxx @@ -771,7 +771,12 @@ void SdrMarkView::SetMarkHandles(SfxViewShell* pOtherShell) if(pSdrOle2Obj && (pSdrOle2Obj->isInplaceActive() || pSdrOle2Obj->isUiActive())) { - return; + if(pViewShell) + { + pViewShell->libreOfficeKitViewCallback(LOK_CALLBACK_GRAPHIC_SELECTION, "INPLACE"); + SfxLokHelper::notifyOtherViews(pViewShell, LOK_CALLBACK_GRAPHIC_VIEW_SELECTION, "selection", "INPLACE"); + return; + } } } |