mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-02-23 12:25:45 +01:00
Disable tab numbering in Gecko 1.9 for the moment. Deal with stale RangeFinds slipping through in corner case.
This commit is contained in:
@@ -77,7 +77,7 @@ const RangeFinder = Module("rangefinder", {
|
||||
},
|
||||
|
||||
findAgain: function (reverse) {
|
||||
if (!this.rangeFind)
|
||||
if (!this.rangeFind || this.rangeFind.stale)
|
||||
this.find(this.lastFindPattern);
|
||||
else if (!this.rangeFind.find(null, reverse))
|
||||
dactyl.echoerr("E486: Pattern not found: " + this.lastFindPattern);
|
||||
|
||||
Reference in New Issue
Block a user