diff --git a/apps/spreadsheeteditor/main/app/controller/Main.js b/apps/spreadsheeteditor/main/app/controller/Main.js index dcf19017d..b953ad8e5 100644 --- a/apps/spreadsheeteditor/main/app/controller/Main.js +++ b/apps/spreadsheeteditor/main/app/controller/Main.js @@ -692,7 +692,7 @@ define([ this.api.asc_ignoreUppercase(ignoreUppercase); var ignoreNumbers = Common.localStorage.getBool("sse-spellcheck-ignore-numbers-words", true); Common.Utils.InternalSettings.set("sse-spellcheck-ignore-numbers-words", ignoreNumbers); - this.api.asc_ignoreUppercase(ignoreNumbers); + this.api.asc_ignoreNumbers(ignoreNumbers); /** spellcheck settings end **/ me.api.asc_registerCallback('asc_onStartAction', _.bind(me.onLongActionBegin, me)); diff --git a/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js b/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js index 3fd6c8cfe..2f045496a 100644 --- a/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js +++ b/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js @@ -201,7 +201,7 @@ define([ store: new Common.UI.DataViewStore([ {name: this.txtGeneral, panel: this.generalSettings, iconCls:'mnu-settings-general', selected: true}, {name: this.txtPageSettings, panel: this.printSettings, iconCls:'mnu-print'}, - {name: this.txtSpellСhecking, panel: this.spellcheckSettings, iconCls:'btn-ic-docspell'} + {name: this.txtSpellСhecking, panel: this.spellcheckSettings, iconCls:'mu-settings-spellcheck'} ]), itemTemplate: _.template([ '
', @@ -961,20 +961,21 @@ define([ template: _.template([ '', - '', - '', - '', - '', '', - '', - '', + '', + '', + '', + '', + '', + '', + '', + '', + '', + '', + '','', + '', + '', + '', '', '
', - '
', - '
', - '
', - '
', - '', - '
', - '
' ].join('')), @@ -1002,8 +1003,9 @@ define([ this.cmbDictionaryLanguage = new Common.UI.ComboBox({ el: $markup.findById('#fms-cmb-dictionary-language'), cls: 'input-group-nr', + style: 'width: 267px;', editable: false, - menuStyle: 'min-width: 100%; max-height: 209px;' + menuStyle: 'min-width: 267px; max-height: 209px;' }); this.btnApply = new Common.UI.Button({ diff --git a/apps/spreadsheeteditor/main/resources/less/leftmenu.less b/apps/spreadsheeteditor/main/resources/less/leftmenu.less index 8ceea12aa..4da6dfbf0 100644 --- a/apps/spreadsheeteditor/main/resources/less/leftmenu.less +++ b/apps/spreadsheeteditor/main/resources/less/leftmenu.less @@ -213,6 +213,10 @@ button.notify .btn-menu-comments {background-position: -0*@toolbar-icon-size -2* &.mnu-settings-general { background-position: 0 -1141px; } + + &.mu-settings-spellcheck { + background-position: 0px -1860px; + } } } @@ -233,6 +237,10 @@ button.notify .btn-menu-comments {background-position: -0*@toolbar-icon-size -2* &.mnu-settings-general { background-position: -20px -1141px; } + + &.mu-settings-spellcheck { + background-position: -20px -1860px; + } } } }