Skip to content

Commit d2c1b68

Browse files
github-actions[bot]PureWeen
authored andcommitted
[create-pull-request] automated change (#31334)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent ea135a7 commit d2c1b68

File tree

3 files changed

+20
-20
lines changed

3 files changed

+20
-20
lines changed

src/Controls/src/Core/Handlers/Items2/iOS/CarouselViewController2.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,7 @@ async Task UpdateInitialPosition()
499499
return;
500500
}
501501

502-
if(!ItemsView.IsVisible)
502+
if (!ItemsView.IsVisible)
503503
{
504504
// If the CarouselView is not visible we don't want to set the initial position
505505
// since it will be set when the CarouselView becomes visible

src/Controls/tests/TestCases.Shared.Tests/Tests/Issues/Issue6101.cs

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,23 @@
44

55
namespace Microsoft.Maui.TestCases.Tests.Issues
66
{
7-
public class Issue6101 : _IssuesUITest
8-
{
9-
public override string Issue => "Picker items do not appear when tapping on the picker while using PushModalAsync for navigation";
7+
public class Issue6101 : _IssuesUITest
8+
{
9+
public override string Issue => "Picker items do not appear when tapping on the picker while using PushModalAsync for navigation";
1010

11-
public Issue6101(TestDevice device) : base(device)
12-
{
13-
}
11+
public Issue6101(TestDevice device) : base(device)
12+
{
13+
}
1414

15-
[Test]
16-
[Category(UITestCategories.Picker)]
17-
public void ShouldAppearItemsWhenTappingOnPickerUsingPushModalAsync()
18-
{
19-
App.WaitForElement("Button");
20-
App.Tap("Button");
21-
App.WaitForElement("Picker");
22-
App.Click("Picker");
23-
VerifyScreenshot();
24-
}
25-
}
15+
[Test]
16+
[Category(UITestCategories.Picker)]
17+
public void ShouldAppearItemsWhenTappingOnPickerUsingPushModalAsync()
18+
{
19+
App.WaitForElement("Button");
20+
App.Tap("Button");
21+
App.WaitForElement("Picker");
22+
App.Click("Picker");
23+
VerifyScreenshot();
24+
}
25+
}
2626
}

src/Core/src/Platform/Windows/RootNavigationView.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public RootNavigationView()
3939

4040
internal new MauiToolbar? Toolbar
4141
{
42-
get => base.Toolbar as MauiToolbar;
42+
get => base.Toolbar as MauiToolbar;
4343
set
4444
{
4545
if (base.Toolbar == value)
@@ -367,7 +367,7 @@ internal Maui.IView? FlyoutView
367367
// We use a container because if we just assign our Flyout to the PaneFooter on the NavigationView
368368
// The measure call passes in PositiveInfinity for the measurements which causes the layout system
369369
// to crash. So we use this Panel to facilitate more constrained measuring values
370-
partial class FlyoutPanel : Panel
370+
partial class FlyoutPanel : Panel
371371
{
372372
public Maui.IView? FlyoutView { get; set; }
373373

0 commit comments

Comments
 (0)