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

Fix autocomplete input issue.

Update issue #341
Fixed.
This commit is contained in:
Kris Maglione
2011-03-08 02:09:53 -05:00
parent 3ff5f8dcbd
commit 7aa4f87300

View File

@@ -104,6 +104,10 @@ var ProcessorStack = Class("ProcessorStack", {
events.dbg("RESULT: " + this._result(result));
if (result === Events.PASS || result === Events.PASS_THROUGH)
if (this.events[0].originalTarget)
this.events[0].originalTarget.dactylKeyPress = undefined;
if (result !== Events.PASS || this.events.length > 1)
Events.kill(this.events[this.events.length - 1]);