diff options
-rw-r--r-- | sd/source/ui/view/drviews2.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sd/source/ui/view/drviews2.cxx b/sd/source/ui/view/drviews2.cxx index 58cd5e5297b2..c839b79e3fb9 100644 --- a/sd/source/ui/view/drviews2.cxx +++ b/sd/source/ui/view/drviews2.cxx @@ -38,6 +38,7 @@ #include <comphelper/processfactory.hxx> #include <comphelper/propertysequence.hxx> #include <comphelper/scopeguard.hxx> +#include <comphelper/lok.hxx> #include <editeng/contouritem.hxx> #include <editeng/editdata.hxx> @@ -2263,7 +2264,7 @@ void DrawViewShell::FuTemporary(SfxRequest& rReq) { OutlinerView* pOlView = mpDrawView->GetTextEditOutlinerView(); - if (pOlView) + if (pOlView || comphelper::LibreOfficeKit::isActive()) { InsertURLField(pHLItem->GetURL(), pHLItem->GetName(), pHLItem->GetTargetFrame()); |