Commit 15e7d2ff authored by Sergey.Luzyanin's avatar Sergey.Luzyanin Committed by Alexander.Trofimov

Bug 26173 - Меняется позиция курсора при наборе текста в заголовке диаграммы,...

Bug 26173 - Меняется позиция курсора при наборе текста в заголовке диаграммы, если она была перенесена на следующий лист

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@58524 954022d7-b5bf-4e40-9824-e11837661b57
parent 5b1016b8
......@@ -21876,6 +21876,7 @@ CTitle.prototype =
}
else if(this.txBody && this.txBody.content)
{
var StartPage = this.txBody.content.StartPage;
if(!this.tx)
{
this.setTx(new CChartText());
......@@ -21885,6 +21886,10 @@ CTitle.prototype =
var selection_state = this.txBody.content.Get_SelectionState();
this.txBody = this.tx.rich;
this.txBody.content.Set_SelectionState(selection_state, selection_state.length - 1);
if(isRealNumber(StartPage))
{
this.txBody.content.Set_StartPage(StartPage);
}
//if(editor && editor.isDocumentEditor)
//{
// this.recalculateContent();
......
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