mirror of https://github.com/vector-im/riot-web
				
				
				
			Merge pull request #3328 from matrix-org/bwindels/modifier-refocus-fix-attempt
Explicitly check for modifier keydown events before focusing composerpull/21833/head
						commit
						c7c87ccd9c
					
				|  | @ -349,7 +349,8 @@ const LoggedInView = React.createClass({ | |||
| 
 | ||||
|         let handled = false; | ||||
|         const ctrlCmdOnly = isOnlyCtrlOrCmdKeyEvent(ev); | ||||
|         const hasModifier = ev.altKey || ev.ctrlKey || ev.metaKey || ev.shiftKey; | ||||
|         const hasModifier = ev.altKey || ev.ctrlKey || ev.metaKey || ev.shiftKey || | ||||
|             ev.key === "Alt" || ev.key === "Control" || ev.key === "Meta" || ev.key === "Shift"; | ||||
| 
 | ||||
|         switch (ev.keyCode) { | ||||
|             case KeyCode.PAGE_UP: | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue
	
	 Bruno Windels
						Bruno Windels