summaryrefslogtreecommitdiff
path: root/editeng
diff options
context:
space:
mode:
authorCaolán McNamara <caolan.mcnamara@collabora.com>2023-12-29 16:19:51 +0000
committerCaolán McNamara <caolan.mcnamara@collabora.com>2023-12-29 20:16:53 +0100
commitd048de6e9fb9197250e924553d46fd6ec4820cb9 (patch)
tree601a35982b5ece692d6ede2c380c8c40ceb7b8e8 /editeng
parent02f8e04778596e4395c01271540298a044eee17a (diff)
ofz#65377 Timeout
reduce further to 120points Change-Id: Idf9892ae01fb6ff3e6cf9b064c2999da9a3a94d4 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/161430 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
Diffstat (limited to 'editeng')
-rw-r--r--editeng/source/items/textitem.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/editeng/source/items/textitem.cxx b/editeng/source/items/textitem.cxx
index e242566bd36f..9fd6c651985e 100644
--- a/editeng/source/items/textitem.cxx
+++ b/editeng/source/items/textitem.cxx
@@ -765,7 +765,7 @@ bool SvxFontHeightItem::PutValue( const uno::Any& rVal, sal_uInt8 nMemberId )
if (fPoint < 0. || fPoint > 10000.)
return false;
static bool bFuzzing = utl::ConfigManager::IsFuzzing();
- if (bFuzzing && fPoint > 240)
+ if (bFuzzing && fPoint > 120)
{
SAL_WARN("editeng.items", "SvxFontHeightItem ignoring font size of " << fPoint << " for performance");
return false;