Commit dfd72fcb authored by Dmitry.Vikulov's avatar Dmitry.Vikulov Committed by Alexander.Trofimov

Обработка Ctrl+X при вводе текста в шейп

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@54118 954022d7-b5bf-4e40-9824-e11837661b57
parent 049da866
......@@ -921,7 +921,7 @@
var graphicObjects = t.handlers.trigger("getSelectedGraphicObjects");
if ( graphicObjects.length && t.enableKeyEvents ) {
if (!( (event.ctrlKey || event.metaKey) && (event.which == 99 || event.which == 118) )) { // Mozilla Firefox Fix #20080
if (!( (event.ctrlKey || event.metaKey) && (event.which == 99 || event.which == 118 || event.which == 120) )) { // Mozilla Firefox Fix #20080 (Ctrl+C, Ctrl+V, Ctrl+X)
if (t.handlers.trigger("graphicObjectWindowKeyPress", event)) {
if (t.isCellEditMode) {
t.handlers.trigger("stopCellEditing");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment