Commit 85ec5d32 authored by Ilya.Kirillov's avatar Ilya.Kirillov

Исправлен баг с неправильным выставлением стиля у нового параграфа созданного...

Исправлен баг с неправильным выставлением стиля у нового параграфа созданного по Style.Next (баг 31196).

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@67039 954022d7-b5bf-4e40-9824-e11837661b57
parent eb20ed7a
......@@ -2779,7 +2779,7 @@ CDocument.prototype =
if ( NextId === this.Styles.Get_Default_Paragraph() )
NewParagraph.Style_Remove();
else
NewParagraph.Style_Add_Open( NextId );
NewParagraph.Style_Add(NextId, true);
}
var SectPr = Item.Get_SectionPr();
......@@ -2887,7 +2887,7 @@ CDocument.prototype =
if ( NextId === this.Styles.Get_Default_Paragraph() || NextId === this.Styles.Get_Default_ParaList() )
NewParagraph.Style_Remove();
else
NewParagraph.Style_Add_Open( NextId );
NewParagraph.Style_Add(NextId, true);
if ( undefined != LastPara.TextPr.Value.FontSize || undefined !== LastPara.TextPr.Value.RFonts.Ascii )
{
......
......@@ -2141,7 +2141,7 @@ CDocumentContent.prototype =
if ( NextId === this.Get_Styles().Get_Default_Paragraph() )
NewParagraph.Style_Remove();
else
NewParagraph.Style_Add_Open( NextId );
NewParagraph.Style_Add(NextId, true);
}
}
else
......@@ -2216,7 +2216,7 @@ CDocumentContent.prototype =
if ( NextId === this.Styles.Get_Default_Paragraph() )
NewParagraph.Style_Remove();
else
NewParagraph.Style_Add_Open( NextId );
NewParagraph.Style_Add(NextId, true);
if ( undefined != LastPara.TextPr.Value.FontSize || undefined !== LastPara.TextPr.Value.RFonts.Ascii )
{
......
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