swipe north/south in touch menu should also turn page

pull/431/head
chrox 11 years ago
parent 6d30f679c5
commit b6b3207a79

@ -393,9 +393,9 @@ function TouchMenu:onPrevPage()
end end
function TouchMenu:onSwipe(arg, ges_ev) function TouchMenu:onSwipe(arg, ges_ev)
if ges_ev.direction == "west" then if ges_ev.direction == "west" or ges_ev.direction == "north" then
self:onNextPage() self:onNextPage()
elseif ges_ev.direction == "east" then elseif ges_ev.direction == "east" or ges_ev.direction == "south" then
self:onPrevPage() self:onPrevPage()
end end
end end

Loading…
Cancel
Save