From cc3e9c5444a1214455f21e846a22bf298d8dc5fd Mon Sep 17 00:00:00 2001 From: JerryK73 Date: Wed, 6 May 2026 00:07:47 -0400 Subject: [PATCH] Expose current popover target in PopoverContainer --- osu.Framework/Graphics/Cursor/PopoverContainer.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/osu.Framework/Graphics/Cursor/PopoverContainer.cs b/osu.Framework/Graphics/Cursor/PopoverContainer.cs index 87cb32cc5d..fc210adb83 100644 --- a/osu.Framework/Graphics/Cursor/PopoverContainer.cs +++ b/osu.Framework/Graphics/Cursor/PopoverContainer.cs @@ -19,6 +19,7 @@ public partial class PopoverContainer : Container private readonly Container dismissOnMouseDownContainer; private IHasPopover? target; + public IHasPopover? CurrentTarget => target; private Popover? currentPopover; protected override Container Content => content;