We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f355239 commit 3d4be7fCopy full SHA for 3d4be7f
components/LayoutTransformControl/src/LayoutTransformControl.cs
@@ -212,7 +212,9 @@ private Matrix GetTransformMatrix(Transform transform)
212
}
213
214
// Fall back to no-op transformation
215
-#if HAS_UNO
+#if WINUI3
216
+ return Microsoft.UI.Xaml.Media.Matrix.Identity;
217
+#elif WINUI2
218
return Windows.UI.Xaml.Media.Matrix.Identity;
219
#else
220
return Matrix.Identity;
0 commit comments