diff --git a/Excel/view/CellEditorView.js b/Excel/view/CellEditorView.js index 218aa830093730ad9d727d44c2d57aeb6e969346..1153f1a1e1a08b25c565f824cc2caac3863df3bf 100644 --- a/Excel/view/CellEditorView.js +++ b/Excel/view/CellEditorView.js @@ -1779,7 +1779,7 @@ } break; - case 83: // S + /*case 83: // S if (event.ctrlKey) { if (!t.hasFocus) {t.setFocus(true);} if (hieroglyph) {t._syncEditors();} @@ -1788,7 +1788,7 @@ tryCloseEditor(); return false; } - break; + break;*/ case 85: // U if (event.ctrlKey) { diff --git a/Excel/view/EventsController.js b/Excel/view/EventsController.js index 5e3ffd4dd9bd392bf6365abfb9d5331346fe04a5..0f2ab5302ae6d4aba2a6bb494eae7f36a39aedfd 100644 --- a/Excel/view/EventsController.js +++ b/Excel/view/EventsController.js @@ -626,7 +626,7 @@ } // Почему-то очень хочетÑÑ Ð¾Ð±Ñ€Ð°Ð±Ð°Ñ‚Ñ‹Ð²Ð°Ñ‚ÑŒ лишние уÑÐ»Ð¾Ð²Ð¸Ñ Ð² нашем коде, вмеÑто обработки наверху... - if (!t.enableKeyEvents && event.ctrlKey && (80 === event.which || 83 === event.which)) { + if (!t.enableKeyEvents && event.ctrlKey && (80 === event.which/* || 83 === event.which*/)) { // Только еÑли отключены Ñвенты и нажаты Ctrl+S или Ctrl+P мы их обработаем break; } @@ -789,7 +789,7 @@ case 53: // make strikethrough Ctrl + 5 case 66: // make bold Ctrl + b case 73: // make italic Ctrl + i - case 83: // save Ctrl + s + //case 83: // save Ctrl + s case 85: // make underline Ctrl + u case 86: // paste Ctrl + v case 88: // cut Ctrl + x @@ -816,7 +816,7 @@ 73: function () {stop(); t.handlers.trigger("setFontAttributes", "i");}, 85: function () {stop(); t.handlers.trigger("setFontAttributes", "u");}, 80: function () {stop(); t.handlers.trigger("print");}, - 83: function () {stop(); t.handlers.trigger("save");}, + //83: function () {stop(); t.handlers.trigger("save");}, 67: function () {t.handlers.trigger("copy");}, 86: function () { if (!window.GlobalPasteFlag)