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,