From 5fb974728550efbc4a1a642299f14d4a152b5ee1 Mon Sep 17 00:00:00 2001 From: benex Date: Sun, 15 Sep 2024 14:59:01 +0300 Subject: [PATCH] fix: default ui not persisting when using config --update --- fastanime/cli/__init__.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/fastanime/cli/__init__.py b/fastanime/cli/__init__.py index 72e0c98..416ac29 100644 --- a/fastanime/cli/__init__.py +++ b/fastanime/cli/__init__.py @@ -268,10 +268,11 @@ def run_cli( ctx.obj.downloads_dir = downloads_dir if translation_type: ctx.obj.translation_type = translation_type - if fzf: - ctx.obj.use_fzf = True if default: ctx.obj.use_fzf = False + ctx.obj.use_rofi = False + if fzf: + ctx.obj.use_fzf = True if preview: ctx.obj.preview = True if no_preview: