Skip to content

Commit

Permalink
Reset
Browse files Browse the repository at this point in the history
  • Loading branch information
Coolcooo committed Oct 12, 2023
1 parent 8cad682 commit 9a6dde9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cell/view/CellEditorView.js
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,6 @@
this.loadFonts = false;
this.isOpened = false;
this.callTopLineMouseup = false;
this.lastKeyCode = undefined;
this.m_nEditorState = c_oAscCellEditorState.editEnd; // Состояние редактора

// Функции, которые будем отключать
Expand Down Expand Up @@ -2559,6 +2558,8 @@
if (AscCommon.c_oAscCustomShortcutType.Symbol === oCustom.Type) {
api["asc_insertSymbol"](oCustom.Font, oCustom.CharCode);
}
} else {
nRetValue = keydownresult_PreventNothing;
}
break;
}
Expand Down
2 changes: 2 additions & 0 deletions cell/view/EventsController.js
Original file line number Diff line number Diff line change
Expand Up @@ -1033,6 +1033,8 @@
if (AscCommon.c_oAscCustomShortcutType.Symbol === oCustom.Type) {
t.view.Api["asc_insertSymbol"](oCustom.Font, oCustom.CharCode);
}
} else {
nRetValue = keydownresult_PreventNothing;
}
break;
}
Expand Down

0 comments on commit 9a6dde9

Please sign in to comment.