From 84ae493dfb72774f4be41b1981274ddad9cfaba2 Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Tue, 28 Sep 2010 14:10:29 -0400 Subject: [PATCH] Disable the command after-image by default. It feels like a bug with command-line auto-hiding. --- common/content/commandline.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/content/commandline.js b/common/content/commandline.js index 68042d7e..d49568e5 100644 --- a/common/content/commandline.js +++ b/common/content/commandline.js @@ -770,7 +770,7 @@ const CommandLine = Module("commandline", { // FIXME: should trigger "cancel" event if (events.isAcceptKey(key)) { let mode = this._currentExtendedMode; // save it here, as modes.pop() resets it - this._keepCommand = !userContext.hidden_option_no_command_afterimage; + this._keepCommand = !userContext.hidden_option_command_afterimage; this._currentExtendedMode = null; // Don't let modes.pop trigger "cancel" modes.pop(); commandline.triggerCallback("submit", mode, command);