This is an example how it could look in the settings. Maybe with some better wording:
Mockup
i imagine it would be a relatively simple change. Code is currently probably something like:
if current_playbacktime > 10_seconds:
seek(0) # to start of file
else:
load_previous_file()
Would become
if not global_setting_instant_prev_file and current_playbacktime > 10_seconds:
seek(0) # to start of file
else:
load_previous_file()
Just an idea.
Thanks in advance for considering! 🙂