[SSE] Fix applying settings in the viewer

This commit is contained in:
Julia Radzhabova 2019-07-19 15:31:04 +03:00
parent 579fb0d32a
commit 54374199c6

View file

@ -68,6 +68,8 @@ define([
this.addListeners({
'FileMenu': {
'settings:apply': function() {
if (!me.mode || !me.mode.isEdit) return;
me.needUpdateFormula = true;
var lang = Common.localStorage.getItem("sse-settings-func-locale");
@ -135,6 +137,7 @@ define([
},
setMode: function(mode) {
this.mode = mode;
return this;
},