Reputation: 3627
I have a readonly memo shwoing some text. However, there is a usability oddness. The user can pan the content in TMemo when only scroll ought to be possible.
Since people seem to think panning and scrolling is the same, I will give my definitions:
My question is how to only have scroll if possible. (And not be able to drag 2/3 of the entire text control out of the view although i bounces back when touch is let go)
Upvotes: 2
Views: 631
Reputation: 34899
What you are experiencing is an animation effect.
It can be turned off by setting the property:
AniCalculations.BoundsAnimation := false;
See FMX.InertialMovement.TAniCalculations.BoundsAnimation
for more information.
Upvotes: 2