Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
78 changes: 0 additions & 78 deletions src/actions/undo_redo.ts

This file was deleted.

5 changes: 0 additions & 5 deletions src/navigation_controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ import {DisconnectAction} from './actions/disconnect';
import {ActionMenu} from './actions/action_menu';
import {MoveActions} from './actions/move';
import {Mover} from './actions/mover';
import {UndoRedoAction} from './actions/undo_redo';

const KeyCodes = BlocklyUtils.KeyCodes;

Expand Down Expand Up @@ -69,8 +68,6 @@ export class NavigationController {

enterAction: EnterAction = new EnterAction(this.mover, this.navigation);

undoRedoAction: UndoRedoAction = new UndoRedoAction();

actionMenu: ActionMenu = new ActionMenu(this.navigation);

moveActions = new MoveActions(this.mover);
Expand Down Expand Up @@ -244,7 +241,6 @@ export class NavigationController {
this.exitAction.install();
this.enterAction.install();
this.disconnectAction.install();
this.undoRedoAction.install();
this.actionMenu.install();

this.clipboard.install();
Expand All @@ -270,7 +266,6 @@ export class NavigationController {
this.arrowNavigation.uninstall();
this.exitAction.uninstall();
this.enterAction.uninstall();
this.undoRedoAction.uninstall();
this.actionMenu.uninstall();
this.shortcutDialog.uninstall();

Expand Down