summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authormerttumer <mert.tumer@collabora.com>2021-04-26 08:12:11 +0300
committerMert Tumer <mert.tumer@collabora.com>2021-04-26 14:17:05 +0200
commit3f754470815e0dc5ac169a480931282107aad0f9 (patch)
tree6181b40931d0b20a727cd3826d2232de7b1a8fc1 /sfx2
parenta03308be5096b95edc77d22837fb6acde2e1b0f3 (diff)
lok: Interaction handler for FilterOptions
This will enable Text Import Dialog to be executed before the document is loaded Change-Id: I263e69f0739f4971f4c4eec032ebf22ffbdeebb7 Signed-off-by: merttumer <mert.tumer@collabora.com> Reviewed-on: https://gerrit.libreoffice.org/c/core/+/114638 Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com>
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/source/doc/objstor.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/sfx2/source/doc/objstor.cxx b/sfx2/source/doc/objstor.cxx
index 9e54c3771f92..0a2dd750dad7 100644
--- a/sfx2/source/doc/objstor.cxx
+++ b/sfx2/source/doc/objstor.cxx
@@ -874,7 +874,8 @@ ErrCode SfxObjectShell::HandleFilter( SfxMedium* pMedium, SfxObjectShell const *
SfxItemSet* pSet = pMedium->GetItemSet();
const SfxStringItem* pOptions = SfxItemSet::GetItem<SfxStringItem>(pSet, SID_FILE_FILTEROPTIONS, false);
const SfxUnoAnyItem* pData = SfxItemSet::GetItem<SfxUnoAnyItem>(pSet, SID_FILTER_DATA, false);
- if ( !pData && !pOptions )
+ const bool bTiledRendering = comphelper::LibreOfficeKit::isActive();
+ if ( !pData && (bTiledRendering || !pOptions) )
{
css::uno::Reference< XMultiServiceFactory > xServiceManager = ::comphelper::getProcessServiceFactory();
css::uno::Reference< XNameAccess > xFilterCFG;