mirror of
https://github.com/gristlabs/grist-core.git
synced 2026-03-02 04:09:24 +00:00
(core) Removing warnings about deprecated shortcuts.
Summary: Warnings about deprecated shortcuts are no longer needed. As a side effect it fixes a bug that caused those warnings to not persist its state on pages with charts. Test Plan: Removed Reviewers: georgegevoian Reviewed By: georgegevoian Differential Revision: https://phab.getgrist.com/D3820
This commit is contained in:
@@ -11,7 +11,6 @@ import {CodeEditorPanel} from 'app/client/components/CodeEditorPanel';
|
||||
import * as commands from 'app/client/components/commands';
|
||||
import {CursorPos} from 'app/client/components/Cursor';
|
||||
import {CursorMonitor, ViewCursorPos} from "app/client/components/CursorMonitor";
|
||||
import {DeprecatedCommands} from 'app/client/components/DeprecatedCommands';
|
||||
import {DocComm} from 'app/client/components/DocComm';
|
||||
import * as DocConfigTab from 'app/client/components/DocConfigTab';
|
||||
import {Drafts} from "app/client/components/Drafts";
|
||||
@@ -440,7 +439,6 @@ export class GristDoc extends DisposableWithEvents {
|
||||
this.cursorMonitor = CursorMonitor.create(this, this);
|
||||
this.editorMonitor = EditorMonitor.create(this, this);
|
||||
|
||||
DeprecatedCommands.create(this, this).attach();
|
||||
|
||||
G.window.resetSeenPopups = (seen = false) => {
|
||||
this.docPageModel.appModel.dismissedPopups.set(seen ? DismissedPopup.values : []);
|
||||
|
||||
Reference in New Issue
Block a user