소스 검색

adds maxLines = 10000 as a default (should be reasonable)

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

+ 1 - 1
lib/terminal/terminal.dart

@@ -38,7 +38,7 @@ class Terminal with Observable {
     this.onIconChange = _defaultIconHandler,
     this.platform = PlatformBehaviors.unix,
     this.theme = TerminalThemes.defaultTheme,
-    int? maxLines,
+    int maxLines = 10000,
   }) {
     _maxLines = maxLines;