summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
Diffstat (limited to 'svx')
-rw-r--r--svx/source/sidebar/inspector/InspectorTextPanel.cxx7
1 files changed, 0 insertions, 7 deletions
diff --git a/svx/source/sidebar/inspector/InspectorTextPanel.cxx b/svx/source/sidebar/inspector/InspectorTextPanel.cxx
index 0b5da3d2d14e..3ddba2db9e58 100644
--- a/svx/source/sidebar/inspector/InspectorTextPanel.cxx
+++ b/svx/source/sidebar/inspector/InspectorTextPanel.cxx
@@ -58,13 +58,6 @@ InspectorTextPanel::InspectorTextPanel(weld::Widget* pParent)
static bool GetPropertyValues(std::u16string_view rPropName, const uno::Any& rAny,
OUString& rString)
{
- // Hide Asian and Complex properties
- if (!SvtCJKOptions::IsCJKFontEnabled() && rPropName.find(u"Asian") != std::u16string_view::npos)
- return false;
- if (!SvtCTLOptions().IsCTLFontEnabled()
- && rPropName.find(u"Complex") != std::u16string_view::npos)
- return false;
-
if (bool bValue; rAny >>= bValue)
{
rString = SvxResId(bValue ? RID_TRUE : RID_FALSE); // tdf#139136