Disable touch horizontal swipe handling when it would conflict with the app-listing, fixes issue #73.

This commit is contained in:
yellows8 2018-10-30 12:22:51 -04:00
parent 0580a6bcdc
commit d2bb1da2fa

View File

@ -140,12 +140,14 @@ void handleTouch(menu_s* menu) {
} }
} }
// Horizontal Swipe // Horizontal Swipe
else if (abs(y1 - y2) < HORIZONTAL_SWIPE_VERTICAL_PLAY && distance(x1, y1, x2, y2) > HORIZONTAL_SWIPE_MINIMUM_DISTANCE) { else if (y1 < LISTING_START_Y && y2 < LISTING_START_Y) {
if (abs(y1 - y2) < HORIZONTAL_SWIPE_VERTICAL_PLAY && distance(x1, y1, x2, y2) > HORIZONTAL_SWIPE_MINIMUM_DISTANCE) {
// Swipe left to go into theme-menu // Swipe left to go into theme-menu
if (x1 - x2 > 0) { if (x1 - x2 > 0) {
themeMenuStartup(); themeMenuStartup();
} }
} }
}
touchInfo.gestureInProgress = false; touchInfo.gestureInProgress = false;
} }