From 7c11616bea83af5a817996a91ef1d46d50fcc5a4 Mon Sep 17 00:00:00 2001 From: iMithrellas Date: Tue, 29 Jul 2025 23:18:35 +0200 Subject: [PATCH] fix(fzf-preview): Make --scale-up flag opt in instead of opt out --- fastanime/core/config/defaults.py | 1 + 1 file changed, 1 insertion(+) diff --git a/fastanime/core/config/defaults.py b/fastanime/core/config/defaults.py index e90822f..814ede2 100644 --- a/fastanime/core/config/defaults.py +++ b/fastanime/core/config/defaults.py @@ -12,6 +12,7 @@ GENERAL_AUTO_SELECT_ANIME_RESULT = True GENERAL_ICONS = True GENERAL_PREVIEW = lambda: "full" if detect.is_running_kitty_terminal() else "none" GENERAL_SCALE_PREVIEW = True +GENERAL_SCALE_PREVIEW = False GENERAL_IMAGE_RENDERER = ( lambda: "icat" if detect.is_running_kitty_terminal() else "chafa" )