5.1.1 release #62

Merged
coolestskinnieinthejungle merged 96 commits from 5.1.1 into master 2021-07-21 18:45:22 +00:00
1 changed files with 10 additions and 5 deletions
Showing only changes of commit b1cdf930a9 - Show all commits

View File

@ -116,10 +116,15 @@ screen cg_gallery():
else:
add g.make_button(item["item"], item["cg"], xalign = 0.5, yalign = 0.5)
hbox:
if galleryPage < maxPage:
textbutton ">" action SetVariable("galleryPage", galleryPage + 1)
hbox:
grid 3 1:
if galleryPage > 1:
textbutton "<" action SetVariable("galleryPage", galleryPage - 1)
else:
hbox
label str(galleryPage)
if galleryPage < maxPage:
textbutton ">" action SetVariable("galleryPage", galleryPage + 1)
else:
hbox