Ver código fonte

Rearrange field order

xuty 3 anos atrás
pai
commit
eb54377ce3
1 arquivos alterados com 4 adições e 3 exclusões
  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,