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

Fix: Если при редактировании названия диаграммы нажать F2, то вызывался...

Fix: Если при редактировании названия диаграммы нажать F2, то вызывался редактор последней заселекченной ячейки

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@53912 954022d7-b5bf-4e40-9824-e11837661b57
parent 8f9c1d97
......@@ -631,7 +631,8 @@
switch (event.which) {
case 113: // F2
if (isViewerMode || t.isCellEditMode || t.isSelectionDialogMode) {return true;}
var graphicObjects = t.handlers.trigger("getSelectedGraphicObjects");
if (isViewerMode || t.isCellEditMode || t.isSelectionDialogMode || graphicObjects.length) {return true;}
if (AscBrowser.isOpera) {stop();}
// Выставляем блокировку на выход из редактора по клавишам-стрелкам
t.strictClose = true;
......
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