diff --git a/lib/ui/common/app_scroll_behavior.dart b/lib/ui/common/app_scroll_behavior.dart index 32f54fdf..adbbfad3 100644 --- a/lib/ui/common/app_scroll_behavior.dart +++ b/lib/ui/common/app_scroll_behavior.dart @@ -8,9 +8,7 @@ class AppScrollBehavior extends ScrollBehavior { // Add mouse drag on desktop for easier responsive testing Set get dragDevices { final devices = Set.from(super.dragDevices); - if (kDebugMode) { - devices.add(PointerDeviceKind.mouse); - } + devices.add(PointerDeviceKind.mouse); return devices; }