From 6eb28cfa3d60b3a5b50be9af95bfa6cddf87b0a2 Mon Sep 17 00:00:00 2001 From: Benex254 Date: Wed, 14 Aug 2024 20:43:26 +0300 Subject: [PATCH] feat(mpv): show feedback on toggle translation type --- fastanime/cli/utils/player.py | 1 + 1 file changed, 1 insertion(+) diff --git a/fastanime/cli/utils/player.py b/fastanime/cli/utils/player.py index 86f41d9..0a69422 100644 --- a/fastanime/cli/utils/player.py +++ b/fastanime/cli/utils/player.py @@ -234,6 +234,7 @@ class MpvPlayer(object): @mpv_player.on_key_press("shift+t") def _toggle_translation_type(): translation_type = "sub" if config.translation_type == "dub" else "dub" + mpv_player.show_text("Changing translation type...") anime = anime_provider.get_anime( fastanime_runtime_state.provider_anime_search_result["id"], fastanime_runtime_state.selected_anime_anilist,