1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-21 17:27:59 +01:00

Don't close the MOW when it's clicked.

This commit is contained in:
Kris Maglione
2010-09-29 11:50:59 -04:00
parent de3d43292e
commit cdaf824d1f

View File

@@ -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;