Skip to content

Commit 6ff5159

Browse files
committed
Fix
1 parent dc63c55 commit 6ff5159

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Files.App.Controls/BreadcrumbBar/BreadcrumbBar.Events.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ private void RootItemChevronDropDownMenuFlyout_Closed(object? sender, object e)
7575
if (sender is not MenuFlyout flyout)
7676
return;
7777

78-
RootItemDropDownFlyoutOpening?.Invoke(this, new(flyout));
78+
RootItemDropDownFlyoutClosed?.Invoke(this, new(flyout));
7979

8080
VisualStateManager.GoToState(this, "ChevronNormalOff", true);
8181
VisualStateManager.GoToState(this, "PointerNormal", true);

tests/Files.App.UITests/Views/BreadcrumbBarPage.xaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@
6262
<ToggleSwitch
6363
Header="RTL flow direction:"
6464
IsOn="{x:Bind IsRTLEnabled, Mode=TwoWay}"
65-
OffContent="Disable"
66-
OnContent="Enable" />
65+
OffContent="Disabled"
66+
OnContent="Enabled" />
6767
</StackPanel>
6868
</controls:SamplePanel.SideContent>
6969
</controls:SamplePanel>

0 commit comments

Comments
 (0)