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

Enable mouse input by default.

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

+ 1 - 1
lib/src/ui/controller.dart

@@ -10,7 +10,7 @@ import 'package:xterm/src/ui/selection_mode.dart';
 class TerminalController with ChangeNotifier {
   TerminalController({
     SelectionMode selectionMode = SelectionMode.line,
-    PointerInputs pointerInputs = const PointerInputs.none(),
+    PointerInputs pointerInputs = const PointerInputs({PointerInput.tap}),
     bool suspendPointerInput = false,
   })  : _selectionMode = selectionMode,
         _pointerInputs = pointerInputs,