Merge branch '3.0.0' into 3.1.0

This commit is contained in:
Rui Marinho 2018-06-08 14:19:42 -07:00
Родитель 090d316d16 1775058b22
Коммит e0bc1f7a5d
2 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -148,7 +148,8 @@ namespace Xamarin.Forms.Controls.Issues
return true;
}
#if UITEST
// https://github.com/xamarin/Xamarin.Forms/issues/2989
#if UITEST && !__ANDROID__
[Test]
public void ZIndexWhenInsertingChildren()
{

Просмотреть файл

@ -477,7 +477,7 @@ namespace Xamarin.Forms.Platform.UWP
// (i.e. their absolute value is 0), a CompositeTransform is instead used to allow for
// rotation of the control on a 2D plane, and the other values are set. Otherwise, the
// rotation values are set, but the aforementioned functionality will be lost.
if (Math.Abs(view.RotationX) == 0 && Math.Abs(view.RotationY) == 0)
if (Math.Abs(view.RotationX) != 0 || Math.Abs(view.RotationY) != 0)
{
frameworkElement.Projection = new PlaneProjection
{