Commit 857803bc authored by Sergey Luzyanin's avatar Sergey Luzyanin

fix Bug 33747

parent 5153c879
This diff is collapsed.
...@@ -6684,6 +6684,15 @@ CDLbls.prototype = ...@@ -6684,6 +6684,15 @@ CDLbls.prototype =
pr.parent = this; pr.parent = this;
} }
}, },
removeDLbl: function(nIndex)
{
History.Add(new CChangesDrawingsContent(this, AscDFH.historyitem_DLbls_SetDLbl, nIndex, this.dLbl.splice(nIndex, 1), false));
},
removeAllDLbls: function(){
for(var i = this.dLbl.length - 1; i > -1; --i){
this.removeDLbl(i);
}
},
setDLblPos: function(pr) setDLblPos: function(pr)
{ {
History.Add(new CChangesDrawingsLong(this, AscDFH.historyitem_DLbls_SetDLblPos, this.dLblPos, pr)); History.Add(new CChangesDrawingsLong(this, AscDFH.historyitem_DLbls_SetDLblPos, this.dLblPos, pr));
......
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