From cdaf824d1fc301de4e83928dead7d5e8611ce8b1 Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Wed, 29 Sep 2010 11:50:59 -0400 Subject: [PATCH] Don't close the MOW when it's clicked. --- common/content/commandline.js | 4 ++++ 1 file changed, 4 insertions(+) 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;