Bug 1302202 - Fix splitconsole keypress handler. r=jlongster

This commit is contained in:
Jason Laster 2016-09-13 22:55:05 -04:00
Родитель b0da97f01c
Коммит 71f4af770c
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -551,8 +551,7 @@ Toolbox.prototype = {
this.toggleSplitConsole();
// If the debugger is paused, don't let the ESC key stop any pending
// navigation.
let jsdebugger = this.getPanel("jsdebugger");
if (jsdebugger && jsdebugger.panelWin.gThreadClient.state == "paused") {
if (this._threadClient.state == "paused") {
e.preventDefault();
}
}