Commit e781d043 authored by konovalovsergey's avatar konovalovsergey

calcTree broadscast volatile only if something changed

parent 313cbeb5
......@@ -870,7 +870,10 @@
}
var notifyData = {type: AscCommon.c_oNotifyType.Dirty};
this.buildDependency();
this._broadscastVolatile(notifyData);
//broadscast Volatile only if something changed
if (this.changedCell || this.changedDefName) {
this._broadscastVolatile(notifyData);
}
var calcTrack = [];
var noCalcTrack = [];
while (this.changedCell || this.changedDefName) {
......
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