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

Исправлен баг с обновлением курсора (баг 25264). Исправлен баг с выставлением...

Исправлен баг с обновлением курсора (баг 25264). Исправлен баг с выставлением текстовых настроек к символу параграфа (баги 25266, 25260). 

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@57235 954022d7-b5bf-4e40-9824-e11837661b57
parent 048c78ca
......@@ -11359,8 +11359,8 @@ CDocument.prototype =
{
this.DrawingDocument.SelectEnabled(false);
//this.Internal_CheckCurPage();
//this.RecalculateCurPos();
this.Internal_CheckCurPage();
this.RecalculateCurPos();
this.DrawingDocument.TargetStart();
this.DrawingDocument.TargetShow();
......
......@@ -6108,6 +6108,28 @@ Paragraph.prototype =
this.CurPos.ContentPos = CenterRunPos;
this.CurPos.Line = -1;
}
if ( true === this.Cursor_IsEnd() )
{
if ( undefined === IncFontSize )
this.TextPr.Apply_TextPr( TextPr );
else
{
// Выставляем настройки для символа параграфа
var EndTextPr = this.Get_CompiledPr2(false).TextPr.Copy();
EndTextPr.Merge( this.TextPr.Value );
// TODO: Как только перенесем историю изменений TextPr в сам класс CTextPr, переделать тут
this.TextPr.Set_FontSize( FontSize_IncreaseDecreaseValue( IncFontSize, EndTextPr.FontSize ) );
}
// TODO (ParaEnd): Переделать
var LastElement = this.Content[this.Content.length - 1];
if ( para_Run === Element.Type )
{
LastElement.Set_Pr(this.TextPr.Value.Copy());
}
}
}
},
......
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