Commit a5810a02 authored by Ilya Kirillov's avatar Ilya Kirillov

Fixed bug #35488

parent 0f037024
......@@ -8575,6 +8575,11 @@ CDocument.prototype.GetSelectionState = function()
State = this.Controller.GetSelectionState();
}
if (null != this.Selection.Data && true === this.Selection.Data.TableBorder)
{
DocState.Selection.Data = null;
}
State.push(DocState);
return State;
......
......@@ -7469,6 +7469,11 @@ CDocumentContent.prototype.GetSelectionState = function()
}
}
if (null != this.Selection.Data && true === this.Selection.Data.TableBorder)
{
DocState.Selection.Data = null;
}
State.push(DocState);
return State;
};
......
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