소스 검색

Fixes Cursor stays visible even if it left the screen

devmil 4 년 전
부모
커밋
422a570ef6
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 3 1
      lib/frontend/terminal_view.dart

+ 3 - 1
lib/frontend/terminal_view.dart

@@ -425,7 +425,9 @@ class _CursorViewState extends State<CursorView> {
   }
 
   bool _isCursorVisible() {
-    final screenCursorY = widget.terminal.cursorY;
+    final screenCursorY =
+        widget.terminal.cursorY + widget.terminal.scrollOffsetFromBottom;
+
     if (screenCursorY < 0 || screenCursorY >= widget.terminal.terminalHeight) {
       return false;
     }