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

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

Исправлен баг с селектом автофигур, вставленных в таблицу(баг 26562). Исправлен баг с работой копирования стиля (баг 26476).

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@58336 954022d7-b5bf-4e40-9824-e11837661b57
parent 195dfe5b
......@@ -7600,6 +7600,8 @@ CDocumentContent.prototype =
{
this.Selection_Remove();
this.Parent.Set_CurrentElement(true, this.Get_StartPage_Absolute() + this.CurPage);
// Прячем курсор
this.DrawingDocument.TargetEnd();
this.DrawingDocument.SetCurrentPage( this.Get_StartPage_Absolute() + this.CurPage );
......@@ -7621,8 +7623,6 @@ CDocumentContent.prototype =
this.LogicDocument.Selection.Start = false;
}
this.Parent.Set_CurrentElement(true, this.Get_StartPage_Absolute() + this.CurPage);
this.LogicDocument.DrawingObjects.selectById( Id, this.Get_StartPage_Absolute() + this.CurPage );
// TODO: Пока сделаем так, в будущем надо сделать функцию, которая у родительского класса обновляет Select
......
......@@ -6941,7 +6941,9 @@ asc_docs_api.prototype.SetPaintFormat = function(_value)
var value = ( true === _value ? c_oAscFormatPainterState.kOn : ( false === _value ? c_oAscFormatPainterState.kOff : _value ) );
this.isPaintFormat = value;
this.WordControl.m_oLogicDocument.Document_Format_Copy();
if (c_oAscFormatPainterState.kOff !== value)
this.WordControl.m_oLogicDocument.Document_Format_Copy();
};
asc_docs_api.prototype.ChangeShapeType = function(value)
......
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