Skip to content

Fixed Test case failure in PR 29037 - [2025/04/21] Candidate #29049

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -481,8 +481,7 @@ void LayoutChildren(bool animated)
void UpdateFlyoutLayoutBehaviorChanges()
{
LayoutChildren(true);
FlyoutPage flyoutPage = Element as FlyoutPage;
if (flyoutPage == null)
if (FlyoutPage is null)
return;
FlyoutLayoutBehavior flyoutBehavior = FlyoutPage.FlyoutLayoutBehavior;
bool shouldPresent = FlyoutPageController.ShouldShowSplitMode;
Expand All @@ -491,7 +490,7 @@ void UpdateFlyoutLayoutBehaviorChanges()
shouldPresent = false;
}

if (shouldPresent != flyoutPage.IsPresented)
if (shouldPresent != FlyoutPage.IsPresented)
{
((IElementController)Element).SetValueFromRenderer(FlyoutPage.IsPresentedProperty, shouldPresent);
UpdateLeftBarButton();
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ public void CheckNavigationBreaksVisualStatesForPicker()
{
App.WaitForElement("VisualStatePicker");
App.Tap(Switch);
App.WaitForElement("NavigateButton");
App.Tap("NavigateButton");
App.WaitForElement("Next Page");
App.TapBackArrow();
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if TEST_FAILS_ON_IOS || TEST_FAILS_ON_CATALYST // https://github.com/dotnet/maui/issues/28910
#if TEST_FAILS_ON_IOS && TEST_FAILS_ON_CATALYST // https://github.com/dotnet/maui/issues/28910
using NUnit.Framework;
using UITest.Appium;
using UITest.Core;
Expand Down
Copy link
Contributor

@bhavanesh2001 bhavanesh2001 Apr 17, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The Windows snapshot doesn't look right. If SetBlur(10) is used on the canvas, I expect the specified radius (10) to be visibly blurred. I believe this works correctly on Android. So either this is a bug on Windows, or I might be mistaken.
CanvasShouldHonorBlur

Copy link
Contributor

@anandhan-rajagopal anandhan-rajagopal Apr 18, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.