From 9bb1f74f74982ebe5dd0d6de09cd7321aded0d6d Mon Sep 17 00:00:00 2001 From: Jake Funke Date: Fri, 16 Aug 2019 17:21:40 +0000 Subject: [PATCH] fix harvest numeric input bug --- menu_screen.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/menu_screen.py b/menu_screen.py index 0722e2f..4b6b728 100644 --- a/menu_screen.py +++ b/menu_screen.py @@ -276,7 +276,7 @@ class CursedMenu(object): return # this is a number; check to see if we can set it - if user_in >= ord('1') and user_in <= ord(str(min(6,len(self.options)))): + if user_in >= ord('1') and user_in <= ord(str(min(7,len(self.options)))): self.selected = user_in - ord('0') - 1 # convert keypress back to a number, then subtract 1 to get index return