mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-21 15:37:59 +01:00
Don't close the MOW when it's clicked.
This commit is contained in:
@@ -546,6 +546,7 @@ const CommandLine = Module("commandline", {
|
|||||||
this.hideCompletions();
|
this.hideCompletions();
|
||||||
|
|
||||||
if (!this._keepCommand || this._silent || this._quiet) {
|
if (!this._keepCommand || this._silent || this._quiet) {
|
||||||
|
dactyl.dumpStack();
|
||||||
this.widgets.mowContainer.collapsed = true;
|
this.widgets.mowContainer.collapsed = true;
|
||||||
commandline.updateMorePrompt();
|
commandline.updateMorePrompt();
|
||||||
this.hide();
|
this.hide();
|
||||||
@@ -909,6 +910,9 @@ const CommandLine = Module("commandline", {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (event instanceof MouseEvent)
|
||||||
|
return;
|
||||||
|
|
||||||
if (this._startHints) {
|
if (this._startHints) {
|
||||||
statusline.updateInputBuffer("");
|
statusline.updateInputBuffer("");
|
||||||
this._startHints = false;
|
this._startHints = false;
|
||||||
|
|||||||
Reference in New Issue
Block a user