Correctly use MORE instead of PLUS.
This commit is contained in:
parent
21caf36ea4
commit
ac7231db63
1 changed files with 2 additions and 2 deletions
|
@ -403,12 +403,12 @@ class InfoWin(Win):
|
||||||
|
|
||||||
def print_scroll_position(self, window):
|
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
|
is the number of available lines to scroll
|
||||||
down
|
down
|
||||||
"""
|
"""
|
||||||
if window.pos > 0:
|
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))
|
self.addstr(plus, to_curses_attr(get_theme().COLOR_SCROLLABLE_NUMBER))
|
||||||
|
|
||||||
class PrivateInfoWin(InfoWin):
|
class PrivateInfoWin(InfoWin):
|
||||||
|
|
Loading…
Reference in a new issue