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 95baa78 commit e77d8ecCopy full SHA for e77d8ec
internal_filesystem/lib/mpos/ui/gesture_navigation.py
@@ -60,7 +60,7 @@ def _back_swipe_cb(event):
60
if backbutton_visible:
61
backbutton_visible = False
62
smooth_hide(backbutton)
63
- if x > min(100, get_display_width() / 4):
+ if x > get_display_width() / 5:
64
back_screen()
65
elif is_short_movement(dx, dy):
66
# print("Short movement - treating as tap")
@@ -98,7 +98,7 @@ def _top_swipe_cb(event):
98
smooth_hide(downbutton)
99
dx = abs(x - down_start_x)
100
dy = abs(y - down_start_y)
101
- if y > min(80, get_display_height() / 4):
+ if y > get_display_height() / 5:
102
open_drawer()
103
104
0 commit comments