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

Исправлен баг с удалением текста внутри таблицы через нажатие кнопки...

Исправлен баг с удалением текста внутри таблицы через нажатие кнопки "backspace" внутри таблицы (баг 19364).

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@48274 954022d7-b5bf-4e40-9824-e11837661b57
parent 7549b0cb
......@@ -1977,7 +1977,7 @@ CDocument.prototype =
{
this.CurPos.ContentPos = StartPos;
if ( Count < 0 && type_Table === this.Content[StartPos].GetType() && true != bOnTextAdd )
if ( Count < 0 && type_Table === this.Content[StartPos].GetType() && table_Selection_Cell === this.Content[StartPos].Selection.Type && true != bOnTextAdd )
{
return this.Table_RemoveRow();
}
......
......@@ -2169,7 +2169,7 @@ CDocumentContent.prototype =
else
{
this.CurPos.ContentPos = StartPos;
if ( Count < 0 && type_Table === this.Content[StartPos].GetType() && true != bOnTextAdd )
if ( Count < 0 && type_Table === this.Content[StartPos].GetType() && table_Selection_Cell === this.Content[StartPos].Selection.Type && true != bOnTextAdd )
{
this.Table_RemoveRow();
}
......
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