mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-03-14 06:05:49 +01:00
Minor key processing tweaks.
This commit is contained in:
@@ -210,14 +210,14 @@ var MOW = Module("mow", {
|
||||
}
|
||||
},
|
||||
|
||||
onKeyPress: function onKeyPress(event) {
|
||||
onKeyPress: function onKeyPress(eventList) {
|
||||
const KILL = false, PASS = true;
|
||||
|
||||
if (options["more"] && mow.isScrollable(1))
|
||||
this.updateMorePrompt(false, true);
|
||||
else {
|
||||
modes.pop();
|
||||
events.feedkeys(events.toString(event));
|
||||
events.feedevents(null, eventList);
|
||||
return KILL;
|
||||
}
|
||||
return PASS;
|
||||
|
||||
Reference in New Issue
Block a user