1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-04 00:24:13 +01:00

Merge default.

--HG--
branch : mode-refactoring
This commit is contained in:
Kris Maglione
2010-10-08 23:45:52 -04:00
7 changed files with 57 additions and 30 deletions

View File

@@ -479,8 +479,10 @@ const CommandLine = Module("commandline", {
this.hideCompletions();
if (!this._keepCommand || this._silent || this._quiet) {
commandline.updateMorePrompt();
this.hide();
modes.delay(function () {
this.updateMorePrompt();
this.hide();
}, this);
}
},
@@ -490,7 +492,7 @@ const CommandLine = Module("commandline", {
return this._lastCommand;
},
set command(val) {
if (this.commandVisible)
if (this.commandVisible && (modes.extended & modes.EX))
return this.widgets.command = val;
return this._lastCommand = val;
},