diff options
author | Méven Car <meven.car@collabora.com> | 2024-02-08 17:43:25 +0100 |
---|---|---|
committer | Szymon Kłos <szymon.klos@collabora.com> | 2024-02-20 11:05:04 +0100 |
commit | f8f89de7a49db563b870dbaada6f010f2f75254f (patch) | |
tree | 13b0521a43d326229eabfd815597023ff104c72a /sfx2 | |
parent | b721e34f7c873dd994ad3a7ecfb118755a3f2623 (diff) |
Allow Document properties tab custom properties for LOK
Change-Id: I4860f9bad69b3db0eef7b0e98159ca2b336b4f60
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/163611
Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com>
Reviewed-by: Szymon Kłos <szymon.klos@collabora.com>
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/dialog/dinfdlg.cxx | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sfx2/source/dialog/dinfdlg.cxx b/sfx2/source/dialog/dinfdlg.cxx index 26f34882ec42..fc8754e5f12a 100644 --- a/sfx2/source/dialog/dinfdlg.cxx +++ b/sfx2/source/dialog/dinfdlg.cxx @@ -1324,10 +1324,7 @@ SfxDocumentInfoDialog::SfxDocumentInfoDialog(weld::Window* pParent, const SfxIte AddTabPage("general", SfxDocumentPage::Create, nullptr); AddTabPage("description", SfxDocumentDescPage::Create, nullptr); - if (!comphelper::LibreOfficeKit::isActive()) - AddTabPage("customprops", SfxCustomPropertiesPage::Create, nullptr); - else - RemoveTabPage("customprops"); + AddTabPage("customprops", SfxCustomPropertiesPage::Create, nullptr); if (rInfoItem.isCmisDocument()) AddTabPage("cmisprops", SfxCmisPropertiesPage::Create, nullptr); |