[SSE] Bug 56326
This commit is contained in:
parent
1f4f904829
commit
d8ea92fc40
|
@ -130,6 +130,12 @@ define([
|
||||||
updateSheetsInfo: function() {
|
updateSheetsInfo: function() {
|
||||||
if (this.printSettings.isVisible()) {
|
if (this.printSettings.isVisible()) {
|
||||||
this.updateSettings(this.printSettings);
|
this.updateSettings(this.printSettings);
|
||||||
|
this.printSettings.cmbSheet.store.each(function (item) {
|
||||||
|
var sheetIndex = item.get('value');
|
||||||
|
if (!this._changedProps[sheetIndex]) {
|
||||||
|
this._changedProps[sheetIndex] = this.api.asc_getPageOptions(sheetIndex, true, true);
|
||||||
|
}
|
||||||
|
}, this);
|
||||||
} else {
|
} else {
|
||||||
this.isFillSheets = false;
|
this.isFillSheets = false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue