use ctrl shift 2 instead of alt a

pull/2566/head
John McLear 2015-04-05 13:42:26 +01:00
parent db0bcdd696
commit e49bb4017c
1 changed files with 2 additions and 2 deletions

View File

@ -3704,8 +3704,8 @@ function Ace2Inner(){
parent.parent.chat.focus();
evt.preventDefault();
}
if ((!specialHandled) && altKey && shiftKey && keyCode == 65 && type === "keydown"){
// Alt-Shift-A shows a gritter popup showing a line author
if ((!specialHandled) && evt.ctrlKey && shiftKey && keyCode == 50 && type === "keydown"){
// Control-Shift-2 shows a gritter popup showing a line author
var lineNumber = rep.selEnd[0];
var alineAttrs = rep.alines[lineNumber];
var apool = rep.apool;