Quellcode durchsuchen

Merge branch 'dev'

Anatoly Pulyaevskiy vor 5 Jahren
Ursprung
Commit
8590ffb71d
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1
    1
      packages/zefyr/lib/src/widgets/selection.dart

+ 1
- 1
packages/zefyr/lib/src/widgets/selection.dart Datei anzeigen

432
     // Make sure the GestureDetector is big enough to be easily interactive.
432
     // Make sure the GestureDetector is big enough to be easily interactive.
433
     final Rect interactiveRect = handleRect.expandToInclude(
433
     final Rect interactiveRect = handleRect.expandToInclude(
434
       Rect.fromCircle(
434
       Rect.fromCircle(
435
-          center: handleRect.center, radius: kMinInteractiveSize / 2),
435
+          center: handleRect.center, radius: kMinInteractiveDimension / 2),
436
     );
436
     );
437
     final RelativeRect padding = RelativeRect.fromLTRB(
437
     final RelativeRect padding = RelativeRect.fromLTRB(
438
       math.max((interactiveRect.width - handleRect.width) / 2, 0),
438
       math.max((interactiveRect.width - handleRect.width) / 2, 0),