This commit is contained in:
parent
b8cba6f400
commit
d27dfaa621
|
@ -31,7 +31,7 @@ var hotkeys = {
|
||||||
which: 49
|
which: 49
|
||||||
},
|
},
|
||||||
// Ctrl+4 焦点切换到输出窗口
|
// Ctrl+4 焦点切换到输出窗口
|
||||||
goOutPut: {
|
goOutput: {
|
||||||
ctrlKey: true,
|
ctrlKey: true,
|
||||||
altKey: false,
|
altKey: false,
|
||||||
shiftKey: false,
|
shiftKey: false,
|
||||||
|
@ -318,8 +318,8 @@ var hotkeys = {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (event.ctrlKey === hotKeys.goOutPut.ctrlKey
|
if (event.ctrlKey === hotKeys.goOutput.ctrlKey
|
||||||
&& event.which === hotKeys.goOutPut.which) { // Ctrl+4 焦点切换到输出窗口
|
&& event.which === hotKeys.goOutput.which) { // Ctrl+4 焦点切换到输出窗口
|
||||||
bottomGroup.tabs.setCurrent("output");
|
bottomGroup.tabs.setCurrent("output");
|
||||||
|
|
||||||
windows.flowBottom();
|
windows.flowBottom();
|
||||||
|
|
Loading…
Reference in New Issue