mirror of
https://github.com/Benexl/FastAnime.git
synced 2026-01-07 02:03:49 -08:00
feat(player-controls-menu): add media actions menu option
This commit is contained in:
@@ -247,7 +247,7 @@ class Session:
|
||||
if isinstance(next_step, InternalDirective):
|
||||
if next_step == InternalDirective.MAIN:
|
||||
self._history = [self._history[0]]
|
||||
if next_step == InternalDirective.RELOAD:
|
||||
elif next_step == InternalDirective.RELOAD:
|
||||
continue
|
||||
elif next_step == InternalDirective.CONFIG_EDIT:
|
||||
self._edit_config()
|
||||
@@ -263,6 +263,12 @@ class Session:
|
||||
self._history.pop()
|
||||
self._history.pop()
|
||||
self._history.pop()
|
||||
elif next_step == InternalDirective.BACKX4:
|
||||
if len(self._history) > 4:
|
||||
self._history.pop()
|
||||
self._history.pop()
|
||||
self._history.pop()
|
||||
self._history.pop()
|
||||
elif next_step == InternalDirective.EXIT:
|
||||
break
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user