diff options
Diffstat (limited to 'plugins/autofire/autofire_menu.lua')
-rw-r--r-- | plugins/autofire/autofire_menu.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/autofire/autofire_menu.lua b/plugins/autofire/autofire_menu.lua index e2287ce2276..c53dd711f53 100644 --- a/plugins/autofire/autofire_menu.lua +++ b/plugins/autofire/autofire_menu.lua @@ -248,7 +248,7 @@ end local function handle_edit_menu(index, event, buttons) local section, adjusted_index = menu_section(index) - if ((section == MENU_SECTIONS.FOOTER) and (event == 'select')) or (event == 'cancel') then + if ((section == MENU_SECTIONS.FOOTER) and (event == 'select')) or (event == 'back') then configure_menu_active = false table.remove(menu_stack) return true @@ -285,7 +285,7 @@ end local function handle_add_menu(index, event, buttons) local section, adjusted_index = menu_section(index) - if ((section == MENU_SECTIONS.FOOTER) and (event == 'select')) or (event == 'cancel') then + if ((section == MENU_SECTIONS.FOOTER) and (event == 'select')) or (event == 'back') then configure_menu_active = false table.remove(menu_stack) if is_button_complete(current_button) and (event == 'select') then |