removed a typo

pull/358/head
naelsondouglas 2021-10-15 03:12:01 -03:00
parent 6ec5a3d6a4
commit 4b61fa8411
1 changed files with 1 additions and 1 deletions

View File

@ -4807,7 +4807,7 @@ class Menu:
elif key in ["escape", "o", "M", "f2"]: elif key in ["escape", "o", "M", "f2"]:
cls.close = True cls.close = True
break break
elif key == "tab" or (key == "down" and selected_int == len(option_items) - 1 and page in [0, pages]: elif key == "tab" or (key == "down" and selected_int == len(option_items) - 1 and page in [0, pages]):
if cat_int == len(categories) - 1: if cat_int == len(categories) - 1:
cat_int = 0 cat_int = 0
else: else: