Skip to content

Commit 1d425c7

Browse files
authored
Fix: Fixed issue with context menu sometimes not displaying (#12576)
1 parent 1fcbe14 commit 1d425c7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Files.App/Views/LayoutModes/BaseLayout.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,14 +60,14 @@ public AppModel AppModel
6060
{
6161
AlwaysExpanded = true,
6262
AreOpenCloseAnimationsEnabled = false,
63-
Placement = FlyoutPlacementMode.RightEdgeAlignedTop,
63+
Placement = FlyoutPlacementMode.Right,
6464
};
6565

6666
public CommandBarFlyout BaseContextMenuFlyout { get; set; } = new()
6767
{
6868
AlwaysExpanded = true,
6969
AreOpenCloseAnimationsEnabled = false,
70-
Placement = FlyoutPlacementMode.RightEdgeAlignedTop,
70+
Placement = FlyoutPlacementMode.Right,
7171
};
7272

7373
public BaseLayoutCommandsViewModel? CommandsViewModel { get; protected set; }

0 commit comments

Comments
 (0)