Re: [SailfishDevel] Disabling navigation gestures

2014-01-16 Thread Antoine Reversat
Hi, I ended up using Bobs solution. I disabled backNavigation and made a custom button to go back. On Thu, Jan 16, 2014 at 1:47 PM, Seppo Tiainen wrote: > Hi, > > You can check if these easy QML tools are enough for you app: > - gesture.grab command within a MultiPointTouchArea ( onGestureStart

Re: [SailfishDevel] Disabling navigation gestures

2014-01-16 Thread Seppo Tiainen
Hi, You can check if these easy QML tools are enough for you app: - gesture.grab command within a MultiPointTouchArea ( onGestureStarted: {gesture.grab();} ) - or, page by page you can use backNavigation: false and/or forwardNavigation: false. Seppo 2014/1/15 Alexander Ladygin > Hi there > Ju

Re: [SailfishDevel] Disabling navigation gestures

2014-01-15 Thread Alexander Ladygin
Hi there Just a thought: may be you could do it like it's done in Gallery app, where tapping one time brings down menu, where you could navigate back and forward. Best regards, Alexander. On Tue, Jan 14, 2014 at 1:45 PM, Antoine Reversat wrote: > Yeah that's what I was going to do as a last reso

Re: [SailfishDevel] Disabling navigation gestures

2014-01-14 Thread Antoine Reversat
Yeah that's what I was going to do as a last resort :( On Tue, Jan 14, 2014 at 2:49 AM, Bob Jelica wrote: > Hey, > > I’m fighting with the same problem. Only way, at least that I’ve found > thus far, is to use backNavigation/forwardNavigation properties and then > ”faking” the navigation button

Re: [SailfishDevel] Disabling navigation gestures

2014-01-13 Thread Bob Jelica
Hey, I’m fighting with the same problem. Only way, at least that I’ve found thus far, is to use backNavigation/forwardNavigation properties and then ”faking” the navigation buttons in top-left corner with a switch and a label :) //bob On 14 Jan 2014, at 03:42, Antoine Reversat wrote: > Hi, >

[SailfishDevel] Disabling navigation gestures

2014-01-13 Thread Antoine Reversat
Hi, I would like to know if it is possible to disable navigation gestures . I'm using a Map element and navigation gestures override the panning gesture. I don't want to disable the navigation buttons at the top left corner so backNavigation and forwardNavigation properties don't work for me. Ant