Skip to content

Commit

Permalink
Fixed bug #44101 (#869)
Browse files Browse the repository at this point in the history
Co-authored-by: Alexey Musinov <[email protected]>
  • Loading branch information
alexeymusinov and osx84 authored Apr 1, 2020
1 parent ad580fa commit 2c62a35
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cell/native/native.js
Original file line number Diff line number Diff line change
Expand Up @@ -6577,7 +6577,7 @@ window["native"]["offline_apply_event"] = function(type,params) {
{
if (undefined !== params) {
var indexScheme = parseInt(params);
_api.asc_ChangeColorScheme(indexScheme);
_api.asc_ChangeColorSchemeByIdx(indexScheme);
}
break;
}
Expand Down
2 changes: 1 addition & 1 deletion common/Native/Wrappers/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -2303,7 +2303,7 @@ Asc['asc_docs_api'].prototype["Call_Menu_Event"] = function(type, _params)
{
if (undefined !== _params) {
var indexScheme = parseInt(_params);
this.ChangeColorScheme(indexScheme);
_api.asc_ChangeColorSchemeByIdx(indexScheme);
}
break;
}
Expand Down
2 changes: 1 addition & 1 deletion slide/Native/Wrappers/native.js
Original file line number Diff line number Diff line change
Expand Up @@ -1240,7 +1240,7 @@ Asc['asc_docs_api'].prototype["Call_Menu_Event"] = function(type, _params)
{
if (undefined !== _params) {
var indexScheme = parseInt(_params);
this.ChangeColorScheme(indexScheme);
_api.asc_ChangeColorSchemeByIdx(indexScheme);
}
break;
}
Expand Down

0 comments on commit 2c62a35

Please sign in to comment.