Browse Source

increase swipe sensitivity for opening settings

ashilkn 2 years ago
parent
commit
3163fca015
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/ui/extents_page_view.dart

+ 1 - 1
lib/ui/extents_page_view.dart

@@ -293,7 +293,7 @@ class _PageViewState extends State<ExtentsPageView> {
     _lastReportedPage = widget.controller.initialPage;
     widget.openDrawer != null
         ? widget.controller.addListener(() {
-            if (widget.controller.offset < -60) {
+            if (widget.controller.offset < -45) {
               widget.openDrawer();
               Bus.instance.fire(OpenedSettingsEvent());
             }