mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2025-04-10 19:15:12 +00:00
fix(configurator.sh): correct recursive calls in emulator and data management dialogs
This commit is contained in:
parent
20a61c1d3f
commit
9d27347817
|
@ -425,6 +425,7 @@ configurator_open_emulator_dialog() {
|
||||||
|
|
||||||
if [[ -n "$emulator" ]]; then
|
if [[ -n "$emulator" ]]; then
|
||||||
open_component "$emulator"
|
open_component "$emulator"
|
||||||
|
configurator_open_emulator_dialog
|
||||||
else
|
else
|
||||||
configurator_welcome_dialog
|
configurator_welcome_dialog
|
||||||
fi
|
fi
|
||||||
|
@ -627,7 +628,7 @@ configurator_data_management_dialog() {
|
||||||
|
|
||||||
local rc=$?
|
local rc=$?
|
||||||
if [[ $rc == "0" ]] && [[ -z "$choice" ]]; then # User selected Cancel button
|
if [[ $rc == "0" ]] && [[ -z "$choice" ]]; then # User selected Cancel button
|
||||||
configurator_tools_dialog
|
configurator_data_management_dialog
|
||||||
else
|
else
|
||||||
case $choice in
|
case $choice in
|
||||||
"Core Backup" )
|
"Core Backup" )
|
||||||
|
@ -670,7 +671,7 @@ configurator_data_management_dialog() {
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
configurator_tools_dialog
|
configurator_data_management_dialog
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue