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

Исправлен баг с тем, что не создавалась точка в истории перед добавлением...

Исправлен баг с тем, что не создавалась точка в истории перед добавлением новой строки таблицы по клавише Tab (баг 19611).

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@49490 954022d7-b5bf-4e40-9824-e11837661b57
parent 642d27a0
......@@ -8734,7 +8734,13 @@ CTable.prototype =
CurCell = TempCell;
else
{
this.Row_Add(false);
if ( false == editor.WordControl.m_oLogicDocument.Document_Is_SelectionLocked(changestype_None, { Type : changestype_2_Element_and_Type, Element : this, CheckType : changestype_Table_Properties }) )
{
History.Create_NewPoint();
this.Row_Add(false);
}
else
return;
var TempCell = this.Internal_Get_NextCell( Pos );
while ( null != TempCell && vmerge_Restart != TempCell.Get_VMerge() )
......
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