diff --git a/common/content/commandline.js b/common/content/commandline.js index 4b82a469..cd9717a6 100644 --- a/common/content/commandline.js +++ b/common/content/commandline.js @@ -546,6 +546,7 @@ const CommandLine = Module("commandline", { this.hideCompletions(); if (!this._keepCommand || this._silent || this._quiet) { + dactyl.dumpStack(); this.widgets.mowContainer.collapsed = true; commandline.updateMorePrompt(); this.hide(); @@ -909,6 +910,9 @@ const CommandLine = Module("commandline", { return true; } + if (event instanceof MouseEvent) + return; + if (this._startHints) { statusline.updateInputBuffer(""); this._startHints = false;