summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFlorent Le Coz <louiz@louiz.org>2012-10-14 16:05:52 +0000
committerFlorent Le Coz <louiz@louiz.org>2012-10-14 16:27:06 +0000
commitac7231db63d9c01b0eb170ea53e04de4506ef4d6 (patch)
tree38d4fb197949147bb83342a8dae64203b46fc44c /src
parent21caf36ea48500ee34ab92a86c72f6204f79cc83 (diff)
downloadpoezio-ac7231db63d9c01b0eb170ea53e04de4506ef4d6.tar.gz
poezio-ac7231db63d9c01b0eb170ea53e04de4506ef4d6.tar.bz2
poezio-ac7231db63d9c01b0eb170ea53e04de4506ef4d6.tar.xz
poezio-ac7231db63d9c01b0eb170ea53e04de4506ef4d6.zip
Correctly use MORE instead of PLUS.
Diffstat (limited to 'src')
-rw-r--r--src/windows.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/windows.py b/src/windows.py
index 22326820..5c1dc27b 100644
--- a/src/windows.py
+++ b/src/windows.py
@@ -403,12 +403,12 @@ class InfoWin(Win):
def print_scroll_position(self, window):
"""
- Print, link in Weechat, a -PLUS(n)- where n
+ Print, link in Weechat, a -MORE(n)- where n
is the number of available lines to scroll
down
"""
if window.pos > 0:
- plus = ' -PLUS(%s)-' % window.pos
+ plus = ' -MORE(%s)-' % window.pos
self.addstr(plus, to_curses_attr(get_theme().COLOR_SCROLLABLE_NUMBER))
class PrivateInfoWin(InfoWin):