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

Исправлен баг с неудалением номерации при выставлении стиля Normal (баг 28259).

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@64672 954022d7-b5bf-4e40-9824-e11837661b57
parent ac5fd064
...@@ -8005,7 +8005,7 @@ Paragraph.prototype = ...@@ -8005,7 +8005,7 @@ Paragraph.prototype =
// Не удаляем форматирование, при добавлении списка к данному параграфу // Не удаляем форматирование, при добавлении списка к данному параграфу
var DefNumId = this.Parent.Get_Styles().Get_Default_ParaList(); var DefNumId = this.Parent.Get_Styles().Get_Default_ParaList();
if ( Id != DefNumId && ( Id_old != DefNumId || Id != this.Parent.Get_Styles().Get_Default_Paragraph() ) ) if (Id !== DefNumId)
{ {
this.Numbering_Remove(); this.Numbering_Remove();
this.Set_ContextualSpacing( undefined ); this.Set_ContextualSpacing( undefined );
......
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