Commit d0b4c05b authored by Ilya Kirillov's avatar Ilya Kirillov

Fixed bug #35701

parent d5877433
......@@ -16193,6 +16193,13 @@ CTrackRevisionsManager.prototype.Get_CurrentChange = function()
};
CTrackRevisionsManager.prototype.Clear_VisibleChanges = function()
{
if (this.VisibleChanges.length > 0)
{
var oEditorApi = this.LogicDocument.Get_Api();
oEditorApi.sync_BeginCatchRevisionsChanges();
oEditorApi.sync_EndCatchRevisionsChanges();
}
this.VisibleChanges = [];
};
CTrackRevisionsManager.prototype.Add_VisibleChange = function(Change)
......
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