Commit 98797685 authored by Ilya Kirillov's avatar Ilya Kirillov

Fixed bug #34409

parent 7186951e
...@@ -9610,6 +9610,9 @@ CParaPr.prototype = ...@@ -9610,6 +9610,9 @@ CParaPr.prototype =
if(undefined != this.DefaultTabSize && undefined != ParaPr.DefaultTabSize && ParaPr.DefaultTabSize === this.DefaultTabSize) if(undefined != this.DefaultTabSize && undefined != ParaPr.DefaultTabSize && ParaPr.DefaultTabSize === this.DefaultTabSize)
Result_ParaPr.DefaultTabSize = this.DefaultTabSize; Result_ParaPr.DefaultTabSize = this.DefaultTabSize;
if (undefined !== this.Tabs && undefined !== ParaPr.Tabs && this.Tabs.Is_Equal(ParaPr.Tabs))
Result_ParaPr.Tabs = this.Tabs.Copy();
return Result_ParaPr; return Result_ParaPr;
}, },
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment