mirror of
https://github.com/Benexl/FastAnime.git
synced 2026-01-05 17:27:27 -08:00
feat: improve preview
This commit is contained in:
@@ -146,6 +146,15 @@ class Session:
|
||||
elif next_step == ControlFlow.BACK:
|
||||
if len(self._history) > 1:
|
||||
self._history.pop()
|
||||
elif next_step == ControlFlow.BACKX2:
|
||||
if len(self._history) > 2:
|
||||
self._history.pop()
|
||||
self._history.pop()
|
||||
elif next_step == ControlFlow.BACKX3:
|
||||
if len(self._history) > 3:
|
||||
self._history.pop()
|
||||
self._history.pop()
|
||||
self._history.pop()
|
||||
elif next_step == ControlFlow.CONFIG_EDIT:
|
||||
self._edit_config()
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user