diff options
author | Kris Maglione <maglione.k@gmail.com> | 2011-01-04 13:32:15 -0500 |
---|---|---|
committer | Kris Maglione <maglione.k@gmail.com> | 2011-01-04 13:32:15 -0500 |
commit | bf5846e8769f9f5957ac3b3795d08c97c17ad884 (patch) | |
tree | c50c115f60b058505aa8e3accb4b3b7dc50d1d02 | |
parent | 5f9c248ad60cd40aee056ab6de837d01871ce646 (diff) | |
download | pentadactyl-bf5846e8769f9f5957ac3b3795d08c97c17ad884.tar.gz |
Fix finder bug.
-rw-r--r-- | common/modules/finder.jsm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/common/modules/finder.jsm b/common/modules/finder.jsm index b85ae8f3..0bfaf54e 100644 --- a/common/modules/finder.jsm +++ b/common/modules/finder.jsm @@ -107,7 +107,8 @@ var RangeFinder = Module("rangefinder", { | this.commandline.FORCE_SINGLELINE); }, 0); else - this.commandline.widgets.message = ["Normal", (this.rangeFind.backward ? "?" : "/") + this.lastFindPattern]; + this.commandline.echo((this.rangeFind.backward ? "?" : "/") + this.lastFindPattern, + null, this.commandline.FORCE_SINGLELINE); if (this.options["hlfind"]) this.highlight(); |