summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--editeng/source/uno/unonrule.cxx6
1 files changed, 6 insertions, 0 deletions
diff --git a/editeng/source/uno/unonrule.cxx b/editeng/source/uno/unonrule.cxx
index a69fdc7be1fd..ea028e1d90aa 100644
--- a/editeng/source/uno/unonrule.cxx
+++ b/editeng/source/uno/unonrule.cxx
@@ -439,6 +439,12 @@ void SvxUnoNumberingRules::setNumberingRuleByIndex( const Sequence< beans::Prope
sal_Int16 nSize = sal_Int16();
if( aVal >>= nSize )
{
+ // [Bug 120650] the slide content corrupt when open in Aoo
+ if ((nSize>250)||(nSize<=0))
+ {
+ nSize = 100;
+ }
+
aFmt.SetBulletRelSize( (short)nSize );
continue;
}