From 1ae692bd777f6e1fde9e93f17e0b053a946453b3 Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Mon, 30 Mar 2009 13:34:19 +1100 Subject: [PATCH] Fix search scroll limit messages in Player mode. --- xulmus/content/player.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/xulmus/content/player.js b/xulmus/content/player.js index ddcef4d8..e7dc64a0 100644 --- a/xulmus/content/player.js +++ b/xulmus/content/player.js @@ -597,8 +597,7 @@ function Player() // {{{ function echo(str) { setTimeout(function () { - commandline.echo("Search hit TOP, continuing at BOTTOM", - commandline.HL_WARNINGMSG, commandline.APPEND_TO_MESSAGES | commandline.FORCE_SINGLELINE); + commandline.echo(str, commandline.HL_WARNINGMSG, commandline.APPEND_TO_MESSAGES | commandline.FORCE_SINGLELINE); }, 0); }