Skip to content

Commit

Permalink
Fix minor bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
GGGeorgiev20 committed Jun 2, 2023
1 parent 7b9388c commit 51e2816
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
Binary file modified logo.ico
Binary file not shown.
6 changes: 4 additions & 2 deletions selection.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,11 @@ def select_items():
index_main = -1
if pick == -1:
index_main = menu_dict["main"]
current_menu_settings["grill"] = 3
grill_backup = settings.get_grill_backup()

if not settings.get_grill_backup():
current_menu_settings["grill"] = grill_backup

if grill_backup == 0:
return False

order_info = get_selections(menu_dict)
Expand Down
2 changes: 1 addition & 1 deletion settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ def get_browser():

def get_grill_backup():
settings = get_settings()
return bool(settings['grill_backup'])
return settings['grill_backup']

0 comments on commit 51e2816

Please sign in to comment.