diff --git a/src/components/App.tsx b/src/components/App.tsx index 2c3f7a6ef..2d84ee251 100644 --- a/src/components/App.tsx +++ b/src/components/App.tsx @@ -3543,8 +3543,11 @@ class App extends React.Component { // Input handling private onKeyDown = withBatchedUpdates( (event: React.KeyboardEvent | KeyboardEvent) => { + if(this.state.resizingElement && event.shiftKey) { + event.stopPropagation(); + return; + } // normalize `event.key` when CapsLock is pressed #2372 - if ( "Proxy" in window && ((!event.shiftKey && /^[A-Z]$/.test(event.key)) ||