From 7d8392a7db6fa87498fd86b46634ae6a589e4ac6 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 12 Mar 2026 06:48:51 +0000 Subject: [PATCH] Lower adaptive image threshold from 300px to 200px effective width Keeps full-resolution images visible longer before swapping to thumbnails, only downscaling when nodes are quite small on screen. https://claude.ai/code/session_01MvD1n4QeXutgwUpKJuDGHa --- src/hooks/useAdaptiveImageSrc.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hooks/useAdaptiveImageSrc.ts b/src/hooks/useAdaptiveImageSrc.ts index 17519d65..63d61ecc 100644 --- a/src/hooks/useAdaptiveImageSrc.ts +++ b/src/hooks/useAdaptiveImageSrc.ts @@ -9,7 +9,7 @@ import { removePending, } from "@/store/thumbnailCache"; -const EFFECTIVE_WIDTH_THRESHOLD = 300; +const EFFECTIVE_WIDTH_THRESHOLD = 200; const DEFAULT_NODE_WIDTH = 350; /**