Преглед на файлове

increase queue initial size

xuty преди 4 години
родител
ревизия
33c93bf338
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      lib/terminal/terminal.dart

+ 1 - 1
lib/terminal/terminal.dart

@@ -166,7 +166,7 @@ class Terminal with Observable {
   late Buffer _altBuffer;
 
   /// Queue of input characters. addLast() to add, removeFirst() to consume.
-  final _queue = Queue<int>();
+  final _queue = ListQueue<int>(81920);
 
   bool _slowMotion = false;
   bool get slowMotion => _slowMotion;