Commit f8e1ccf8 authored by Ilya Kirillov's avatar Ilya Kirillov

Fixed bug #34574

parent 0ccf453a
...@@ -496,7 +496,10 @@ CTable.prototype.Document_Is_SelectionLocked = function(CheckType, bCheckInner) ...@@ -496,7 +496,10 @@ CTable.prototype.Document_Is_SelectionLocked = function(CheckType, bCheckInner)
} }
case AscCommon.changestype_Remove: case AscCommon.changestype_Remove:
{ {
this.Lock.Check( this.Get_Id() ); if (true === this.ApplyToAll || (true === this.Selection.Use && table_Selection_Cell === this.Selection.Type))
this.Lock.Check(this.Get_Id());
else
this.CurCell.Content.Document_Is_SelectionLocked(CheckType);
break; break;
} }
......
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