AZERTY layouts require pressing shift to press a number at all, so it triggers a column switch even when simply typing numbers in textarea
This commit is contained in:
		
							parent
							
								
									552d22bec9
								
							
						
					
					
						commit
						b3d7ad958f
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -186,7 +186,7 @@ export default class UI extends React.Component {
 | 
			
		|||
 | 
			
		||||
  componentDidMount () {
 | 
			
		||||
    this.hotkeys.__mousetrap__.stopCallback = (e, element) => {
 | 
			
		||||
      return !(e.altKey || e.ctrlKey || e.shiftKey || e.metaKey) && ['TEXTAREA', 'SELECT', 'INPUT'].includes(element.tagName);
 | 
			
		||||
      return !(e.altKey || e.ctrlKey || e.metaKey) && ['TEXTAREA', 'SELECT', 'INPUT'].includes(element.tagName);
 | 
			
		||||
    };
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Reference in a new issue