Handle global hotkeys even when no element has focus (#8998)
This fixes hotkeys not working when pressing the column “back” button, for instance.
This commit is contained in:
		
							parent
							
								
									7085b21f70
								
							
						
					
					
						commit
						adb06baef6
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -460,7 +460,7 @@ class UI extends React.PureComponent { | |||
|     }; | ||||
| 
 | ||||
|     return ( | ||||
|       <HotKeys keyMap={keyMap} handlers={handlers} ref={this.setHotkeysRef}> | ||||
|       <HotKeys keyMap={keyMap} handlers={handlers} ref={this.setHotkeysRef} attach={window} focused> | ||||
|         <div className={classNames('ui', { 'is-composing': isComposing })} ref={this.setRef} style={{ pointerEvents: dropdownMenuIsOpen ? 'none' : null }}> | ||||
|           <TabsBar /> | ||||
| 
 | ||||
|  |  | |||
		Reference in a new issue