Fixed names missed in a previous renaming.
This commit is contained in:
parent
4919a1ed2a
commit
a60216cae0
1 changed files with 6 additions and 6 deletions
12
vigil
12
vigil
|
|
@ -650,22 +650,22 @@ class Screen:
|
||||||
dy * (listing_height // 2)))
|
dy * (listing_height // 2)))
|
||||||
|
|
||||||
def listing_up(self):
|
def listing_up(self):
|
||||||
self._move_listing(UP)
|
self._move_listing(_UP)
|
||||||
|
|
||||||
def listing_down(self):
|
def listing_down(self):
|
||||||
self._move_listing(DOWN)
|
self._move_listing(_DOWN)
|
||||||
|
|
||||||
def listing_right(self):
|
def listing_right(self):
|
||||||
self._page_listing(RIGHT)
|
self._page_listing(_RIGHT)
|
||||||
|
|
||||||
def listing_left(self):
|
def listing_left(self):
|
||||||
self._page_listing(LEFT)
|
self._page_listing(_LEFT)
|
||||||
|
|
||||||
def listing_page_up(self):
|
def listing_page_up(self):
|
||||||
self._page_listing(UP)
|
self._page_listing(_UP)
|
||||||
|
|
||||||
def listing_page_down(self):
|
def listing_page_down(self):
|
||||||
self._page_listing(DOWN)
|
self._page_listing(_DOWN)
|
||||||
|
|
||||||
def move_to_next_issue(self):
|
def move_to_next_issue(self):
|
||||||
self._summary.move_to_next_issue()
|
self._summary.move_to_next_issue()
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue