We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d41be1 commit f8788ccCopy full SHA for f8788cc
internal_filesystem/lib/mpos/ui/gesture_navigation.py
@@ -34,7 +34,7 @@ def _back_swipe_cb(event):
34
backbutton.set_pos(magnetic_x,back_start_y)
35
elif event_code == lv.EVENT.RELEASED:
36
smooth_hide(backbutton)
37
- if x > min(100, get_display_width() / 3):
+ if x > min(100, get_display_width() / 4):
38
back_screen()
39
40
@@ -62,7 +62,7 @@ def _top_swipe_cb(event):
62
downbutton.set_pos(down_start_x,magnetic_y)
63
64
smooth_hide(downbutton)
65
- if y > min(80, get_display_height() / 3):
+ if y > min(80, get_display_height() / 4):
66
open_drawer()
67
68
0 commit comments