From 445ca5aaf25f6e0c7233144da2afa2310164b516 Mon Sep 17 00:00:00 2001 From: Davide Giacometti Date: Mon, 21 Nov 2022 13:48:30 +0100 Subject: [PATCH] [Hosts]Workaround for context menu not opening (#22107) --- src/modules/Hosts/Hosts/Views/MainPage.xaml.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/modules/Hosts/Hosts/Views/MainPage.xaml.cs b/src/modules/Hosts/Hosts/Views/MainPage.xaml.cs index 2fd1c82725..7ced0fc6e6 100644 --- a/src/modules/Hosts/Hosts/Views/MainPage.xaml.cs +++ b/src/modules/Hosts/Hosts/Views/MainPage.xaml.cs @@ -100,6 +100,7 @@ namespace Hosts.Views flyoutBase.ShowAt(owner, new FlyoutShowOptions { Position = e.GetPosition(owner), + ShowMode = FlyoutShowMode.Transient, // https://github.com/microsoft/PowerToys/issues/21263 }); } }