[SSE] Tab color

Change arguments for function asc_setWorksheetTabColor
This commit is contained in:
Alexander.Trofimov 2019-09-26 13:05:16 +03:00
parent a4a2bdcf46
commit 282449adcb

View file

@ -486,12 +486,12 @@ define([
var tab = _.findWhere(this.statusbar.tabbar.tabs, {sheetindex: sindex});
if (tab) {
if ('transparent' === color) {
this.api.asc_setWorksheetTabColor(sindex, null);
this.api.asc_setWorksheetTabColor(null, [sindex]);
tab.$el.find('a').css('box-shadow', '');
} else {
var asc_clr = Common.Utils.ThemeColor.getRgbColor(color);
if (asc_clr) {
this.api.asc_setWorksheetTabColor(sindex, asc_clr);
this.api.asc_setWorksheetTabColor(asc_clr, [sindex]);
this.setTabLineColor(tab, asc_clr);
}
}