summaryrefslogtreecommitdiff
path: root/sfx2/source/dialog
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2021-06-04 20:14:54 +0100
committerCaolán McNamara <caolanm@redhat.com>2021-06-04 22:06:29 +0200
commitb68be8c7286b3168468414ec0106c610582f9d6f (patch)
treeb278bdff2997588b968499ed13897995731c8b0e /sfx2/source/dialog
parent63f9e6d0f2596e5481e34573664d358fb61b9d9f (diff)
gtk4: undo bootstrapping conditional page removal
now menubutton is available again Change-Id: If3112cde3e5231245088740ab0217a0e61b3579c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/116733 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sfx2/source/dialog')
-rw-r--r--sfx2/source/dialog/dinfdlg.cxx8
1 files changed, 1 insertions, 7 deletions
diff --git a/sfx2/source/dialog/dinfdlg.cxx b/sfx2/source/dialog/dinfdlg.cxx
index 97d472a89ff8..40bd42c63f6e 100644
--- a/sfx2/source/dialog/dinfdlg.cxx
+++ b/sfx2/source/dialog/dinfdlg.cxx
@@ -1113,13 +1113,7 @@ SfxDocumentInfoDialog::SfxDocumentInfoDialog(weld::Window* pParent, const SfxIte
// Property Pages
AddTabPage("general", SfxDocumentPage::Create, nullptr);
AddTabPage("description", SfxDocumentDescPage::Create, nullptr);
- if (Application::GetToolkitName() == "gtk4")
- {
- SAL_WARN( "sfx.dialog", "temp bootstrapping gtk4 disabled page for menubutton");
- RemoveTabPage("customprops");
- }
- else
- AddTabPage("customprops", SfxCustomPropertiesPage::Create, nullptr);
+ AddTabPage("customprops", SfxCustomPropertiesPage::Create, nullptr);
if (rInfoItem.isCmisDocument())
AddTabPage("cmisprops", SfxCmisPropertiesPage::Create, nullptr);
else