ooooo
This commit is contained in:
+1
-2
@@ -411,7 +411,7 @@ def run():
|
|||||||
current_preferred_game += 1
|
current_preferred_game += 1
|
||||||
elif show_cycle == True:
|
elif show_cycle == True:
|
||||||
print(len(games), all_games_max_page, current_page)
|
print(len(games), all_games_max_page, current_page)
|
||||||
if current_page == all_games_max_page:
|
if current_page + 4 == len(games) - 1:
|
||||||
if len(preferred_games) > 0:
|
if len(preferred_games) > 0:
|
||||||
show_preferred = True
|
show_preferred = True
|
||||||
show_cycle = False
|
show_cycle = False
|
||||||
@@ -419,7 +419,6 @@ def run():
|
|||||||
else:
|
else:
|
||||||
current_page = 0
|
current_page = 0
|
||||||
|
|
||||||
|
|
||||||
print('Drawing all games')
|
print('Drawing all games')
|
||||||
draw_all_games(canvas, games, current_page)
|
draw_all_games(canvas, games, current_page)
|
||||||
current_page = (current_page + 4) % max(len(games), 1)
|
current_page = (current_page + 4) % max(len(games), 1)
|
||||||
|
|||||||
Reference in New Issue
Block a user