Skip to content

Commit 33739e9

Browse files
committed
chore: Address comments
1 parent a83e412 commit 33739e9

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

src/SamplesApp/SamplesApp.UITests/Windows_UI_Xaml_Shapes/Basics_Shapes_Tests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ public void When_Polygon()
6969
[AutoRetry]
7070
[ActivePlatforms(Platform.iOS)]
7171
[Timeout(TestTimeout)]
72+
[Ignore("Flaky on iOS/Android native https://github.com/unoplatform/uno/issues/22688")]
7273
public void When_Path()
7374
{
7475
// For Path, the junction between the begin and the end of the path is not as smooth as WinUI (on iOS),

src/Uno.UI/UI/Xaml/Controls/CommandBarFlyout/TextCommandBarFlyout.mux.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -757,7 +757,7 @@ private void ExecuteRedoCommand()
757757
{
758758
var target = Target;
759759

760-
if (target is TextBox textBoxTarget and not PasswordBox) // Uno specific: PasswordBox derives from TextBox)
760+
if (target is TextBox textBoxTarget and not PasswordBox) // Uno specific: PasswordBox derives from TextBox
761761
{
762762
textBoxTarget.Redo();
763763
}

src/Uno.UI/UI/Xaml/UIElement.mux.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
using System;
66
using System.Collections.Generic;
77
using System.Runtime.CompilerServices;
8-
using System.Windows.Markup;
98
using DirectUI;
109
using Microsoft.UI.Xaml.Automation.Peers;
1110
using Microsoft.UI.Xaml.Controls;

0 commit comments

Comments
 (0)