Commit ddb5ce70 authored by Sergey Luzyanin's avatar Sergey Luzyanin

fix bug with double strikeout

parent 97d9554b
......@@ -2377,7 +2377,10 @@ background-repeat: no-repeat;\
if (editor.WordControl.m_oLogicDocument.Document_Is_SelectionLocked(changestype_Drawing_Props) === false)
{
History.Create_NewPoint(AscDFH.historydescription_Presentation_ParagraphAdd);
this.WordControl.m_oLogicDocument.Paragraph_Add(new AscCommonWord.ParaTextPr({Strikeout : value}));
this.WordControl.m_oLogicDocument.Paragraph_Add(new AscCommonWord.ParaTextPr({
Strikeout : value,
DStrikeout : false
}));
}
};
asc_docs_api.prototype.put_PrLineSpacing = function(Type, Value)
......
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