Commit 73eeb2ea authored by Ilya.Kirillov's avatar Ilya.Kirillov Committed by Alexander.Trofimov

Исправлен баг с компиляцией стиля.

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@55676 954022d7-b5bf-4e40-9824-e11837661b57
parent b61e8bff
...@@ -4080,6 +4080,9 @@ CStyles.prototype = ...@@ -4080,6 +4080,9 @@ CStyles.prototype =
if ( null === Style.BasedOn ) if ( null === Style.BasedOn )
{ {
// TODO: Проверить нужно ли копировать стили по умолчанию для данного типа стиля, когда сам стиль задан
// Для параграфа, вроде как не нужно (см. ivanova_veronica.docx стиль "Colon")
// Копируем свойства по умолчанию для данного типа // Копируем свойства по умолчанию для данного типа
if ( true === bUseDefault ) if ( true === bUseDefault )
{ {
...@@ -4088,10 +4091,10 @@ CStyles.prototype = ...@@ -4088,10 +4091,10 @@ CStyles.prototype =
{ {
case styletype_Paragraph: case styletype_Paragraph:
{ {
var DefId = this.Default.Paragraph; // var DefId = this.Default.Paragraph;
//
Pr.ParaPr.Merge( this.Style[DefId].ParaPr ); // Pr.ParaPr.Merge( this.Style[DefId].ParaPr );
Pr.TextPr.Merge( this.Style[DefId].TextPr ); // Pr.TextPr.Merge( this.Style[DefId].TextPr );
break; break;
} }
......
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