Bug 1183325 - Allow use of debugger shortcut keys when split console has focus;r=bgrins

This commit is contained in:
Hallvord R. M. Steen
2015-10-07 22:09:55 +02:00
parent b8e19a390b
commit a0451bb884
8 changed files with 296 additions and 1 deletions

View File

@@ -706,7 +706,10 @@ StackFrames.prototype = {
}
this.activeThread.fillFrames(CALL_STACK_PAGE_SIZE);
DebuggerView.editor.focus();
// Focus the editor, but don't steal focus from the split console.
if (!DebuggerController._toolbox.isSplitConsoleFocused()) {
DebuggerView.editor.focus();
}
},
/**