Skip to content

Commit 3eba71b

Browse files
Modified the test
1 parent 1c68d75 commit 3eba71b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Controls/tests/TestCases.HostApp/Issues/Issue17323.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
namespace Maui.Controls.Sample.Issues;
22

3-
[Issue(IssueTracker.Github, 17323, "Arabic text flows RTL on Android in MAUI, but flows LTR on Windows", PlatformAffected.UWP)]
3+
[Issue(IssueTracker.Github, 17323, "Arabic text flows RTL on Android in MAUI, but flows LTR on Windows", PlatformAffected.Android)]
44
public class Issue17323 : TestContentPage
55
{
66
protected override void Init()
@@ -34,7 +34,7 @@ public void Draw(ICanvas canvas, RectF dirtyRect)
3434
canvas.StrokeSize = 5;
3535
canvas.FontSize = 18;
3636
canvas.DrawRectangle(dirtyRect);
37-
canvas.DrawString("Hello World", dirtyRect.X + 5, dirtyRect.Y + 5 , dirtyRect.Width - 10, dirtyRect.Height - 160, HorizontalAlignment.Left, VerticalAlignment.Center);
37+
canvas.DrawString("Hello World", dirtyRect.X + 5, dirtyRect.Y + 5, dirtyRect.Width - 10, dirtyRect.Height - 160, HorizontalAlignment.Left, VerticalAlignment.Center);
3838
canvas.DrawString("مرحبا بالعالم", dirtyRect.X + 5, dirtyRect.Y + 20, dirtyRect.Width - 10, dirtyRect.Height - 160, HorizontalAlignment.Left, VerticalAlignment.Center);
3939
}
4040
}

0 commit comments

Comments
 (0)