소스 검색

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,