From bf5846e8769f9f5957ac3b3795d08c97c17ad884 Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Tue, 4 Jan 2011 13:32:15 -0500 Subject: [PATCH] Fix finder bug. --- common/modules/finder.jsm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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();