xuty преди 3 години
родител
ревизия
eb54377ce3
променени са 1 файла, в които са добавени 4 реда и са изтрити 3 реда
  1. 4 3
      lib/src/ui/controller.dart

+ 4 - 3
lib/src/ui/controller.dart

@@ -8,14 +8,15 @@ class TerminalController with ChangeNotifier {
   BufferRange? get selection => _selection;
 
   PointerInputs _pointerInputs;
+
+  /// The set of pointer events which will be used as mouse input for the terminal.
+  PointerInputs get pointerInput => _pointerInputs;
+
   bool _suspendPointerInputs;
 
   /// True if sending pointer events to the terminal is suspended.
   bool get suspendedPointerInputs => _suspendPointerInputs;
 
-  /// The set of pointer events which will be used as mouse input for the terminal.
-  PointerInputs get pointerInput => _pointerInputs;
-
   TerminalController({
     PointerInputs pointerInputs = const PointerInputs.none(),
     bool suspendPointerInput = false,