Merge pull request #318 from ph4r05/pr/scrollFix306

PaginatedWithButtons fix, fixes #306
pull/319/head
Tomas Susanka 5 years ago committed by GitHub
commit 64439cda03
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -135,13 +135,13 @@ class PageWithButtons(ui.Control):
if self.index == 0:
self.paginated.on_cancel()
else:
self.paginated.on_down()
self.paginated.on_up()
def on_right(self):
if self.index == self.count - 1:
self.paginated.on_confirm()
else:
self.paginated.on_up()
self.paginated.on_down()
class PaginatedWithButtons(ui.Layout):

Loading…
Cancel
Save