diff options
| author | usodhi <61431818+usodhi@users.noreply.github.com> | 2020-09-21 09:48:05 +0530 |
|---|---|---|
| committer | usodhi <61431818+usodhi@users.noreply.github.com> | 2020-09-21 09:48:05 +0530 |
| commit | 1b43981511136d9b68a1014906a1c409a6831fc6 (patch) | |
| tree | 9591c124db7d9d4499724d734661dbba95183ecf /src/client/views/GlobalKeyHandler.ts | |
| parent | a453df4d9df855243005b83d8b1015c17d74d034 (diff) | |
| parent | e4ae6fa6df6bb0118f113bbdf3a40f768405f7b3 (diff) | |
Merge branch 'master' of https://github.com/browngraphicslab/Dash-Web into acls_uv
Diffstat (limited to 'src/client/views/GlobalKeyHandler.ts')
| -rw-r--r-- | src/client/views/GlobalKeyHandler.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/client/views/GlobalKeyHandler.ts b/src/client/views/GlobalKeyHandler.ts index ba9334c40..0c05a1b69 100644 --- a/src/client/views/GlobalKeyHandler.ts +++ b/src/client/views/GlobalKeyHandler.ts @@ -206,10 +206,12 @@ export class KeyManager { preventDefault = false; break; case "y": + SelectionManager.DeselectAll(); UndoManager.Redo(); stopPropagation = false; break; case "z": + SelectionManager.DeselectAll(); UndoManager.Undo(); stopPropagation = false; break; |
