зеркало из https://github.com/DeGsoft/maui-linux.git
Merge branch '3.0.0' into 3.1.0
This commit is contained in:
Коммит
e0bc1f7a5d
|
@ -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
|
||||
{
|
||||
|
|
Загрузка…
Ссылка в новой задаче