From 45e5f0fa617a64f4119d6ec618dce8766c43e9f5 Mon Sep 17 00:00:00 2001 From: Huang Xin Date: Fri, 27 Mar 2026 17:26:36 +0800 Subject: [PATCH] fix(eink): disable range editor loupe for annotations on Eink devices, closes #3655 (#3656) --- .../app/reader/components/annotator/AnnotationRangeEditor.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/readest-app/src/app/reader/components/annotator/AnnotationRangeEditor.tsx b/apps/readest-app/src/app/reader/components/annotator/AnnotationRangeEditor.tsx index 2a5c1bf6..434a1556 100644 --- a/apps/readest-app/src/app/reader/components/annotator/AnnotationRangeEditor.tsx +++ b/apps/readest-app/src/app/reader/components/annotator/AnnotationRangeEditor.tsx @@ -254,7 +254,7 @@ const AnnotationRangeEditor: React.FC = ({ const activeHandle = draggingHandle ?? getExternalDragHandle(currentStart, currentEnd, loupeDragPoint); - const showLoupe = effectiveLoupePoint !== null && appService?.isMobile && !viewSettings?.vertical; + const showLoupe = appService?.isMobile && !viewSettings?.isEink && !viewSettings?.vertical; return (