소스 검색

fix: #1973 Using the mouse to highlight text very easy to miss the first letter

Lucas.Xu 2 년 전
부모
커밋
0141538be8
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      frontend/appflowy_flutter/packages/appflowy_editor/lib/src/service/selection_service.dart

+ 1 - 1
frontend/appflowy_flutter/packages/appflowy_editor/lib/src/service/selection_service.dart

@@ -348,7 +348,7 @@ class _AppFlowySelectionState extends State<AppFlowySelection>
   void _onPanStart(DragStartDetails details) {
     clearSelection();
 
-    _panStartOffset = details.globalPosition;
+    _panStartOffset = details.globalPosition.translate(-5.0, 0);
     _panStartScrollDy = editorState.service.scrollService?.dy;
 
     _enableInteraction();