The SwipeTransitionEffect does not work correctly in the Right to Left direction, it seems MousePoint cannot go negative.
exp.
SwipeTransitionEffect1.CornerPoint := TPointF.Create(250, 300); Bottom Right Corner of the image
SwipeTransitionEffect1.MousePoint := TPointF.Create(-50, 250); Does not work correctly! Worked ok in 11.3 and before
SwipeTransitionEffect1.CornerPoint := TPointF.Create(0, 300); Bottom Left Corner of the image
SwipeTransitionEffect1.MousePoint := TPointF.Create(300, 250); Here it works as it should.
Does anyone know if there are any changes made to the FMX Filters in Patch 1?