From 5318a24d5a6e8581ef272e1f40f8555e93f4b52a Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Sat, 6 Dec 2008 10:06:48 -0500 Subject: [PATCH] Force single-line more message --- common/content/ui.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/common/content/ui.js b/common/content/ui.js index 22c6fb4b..2314d1f2 100644 --- a/common/content/ui.js +++ b/common/content/ui.js @@ -1362,11 +1362,11 @@ function CommandLine() //{{{ function atEnd() win.scrollY / win.scrollMaxY >= 1; if (showHelp) - setLine("-- More -- SPACE/d/j: screen/page/line down, b/u/k: up, q: quit", this.HL_MOREMSG); + setLine("-- More -- SPACE/d/j: screen/page/line down, b/u/k: up, q: quit", this.HL_MOREMSG, true); else if (force || (options["more"] && isScrollable() && !atEnd())) - setLine("-- More --", this.HL_MOREMSG); + setLine("-- More --", this.HL_MOREMSG, true); else - setLine("Press ENTER or type command to continue", this.HL_QUESTION); + setLine("Press ENTER or type command to continue", this.HL_QUESTION, true); }, updateOutputHeight: function updateOutputHeight(open)