@@ -35,7 +35,6 @@ import {DisconnectAction} from './actions/disconnect';
3535import { ActionMenu } from './actions/action_menu' ;
3636import { MoveActions } from './actions/move' ;
3737import { Mover } from './actions/mover' ;
38- import { UndoRedoAction } from './actions/undo_redo' ;
3938
4039const KeyCodes = BlocklyUtils . KeyCodes ;
4140
@@ -69,8 +68,6 @@ export class NavigationController {
6968
7069 enterAction : EnterAction = new EnterAction ( this . mover , this . navigation ) ;
7170
72- undoRedoAction : UndoRedoAction = new UndoRedoAction ( ) ;
73-
7471 actionMenu : ActionMenu = new ActionMenu ( this . navigation ) ;
7572
7673 moveActions = new MoveActions ( this . mover ) ;
@@ -244,7 +241,6 @@ export class NavigationController {
244241 this . exitAction . install ( ) ;
245242 this . enterAction . install ( ) ;
246243 this . disconnectAction . install ( ) ;
247- this . undoRedoAction . install ( ) ;
248244 this . actionMenu . install ( ) ;
249245
250246 this . clipboard . install ( ) ;
@@ -270,7 +266,6 @@ export class NavigationController {
270266 this . arrowNavigation . uninstall ( ) ;
271267 this . exitAction . uninstall ( ) ;
272268 this . enterAction . uninstall ( ) ;
273- this . undoRedoAction . uninstall ( ) ;
274269 this . actionMenu . uninstall ( ) ;
275270 this . shortcutDialog . uninstall ( ) ;
276271
0 commit comments