From ca97d7bf6cd56d3fc90a6df604afa80c6bbc9b33 Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Mon, 4 Aug 2025 13:41:55 +0900 Subject: [PATCH] Don't require pixel precision to expand editor toolboxes I don't think this takes away from usability and it's the easiest solution to fix an actual issue. Closes https://github.com/ppy/osu/issues/34471. --- osu.Game/Graphics/Containers/ExpandingContainer.cs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/osu.Game/Graphics/Containers/ExpandingContainer.cs b/osu.Game/Graphics/Containers/ExpandingContainer.cs index 4b70fd6987..65a00b725c 100644 --- a/osu.Game/Graphics/Containers/ExpandingContainer.cs +++ b/osu.Game/Graphics/Containers/ExpandingContainer.cs @@ -76,12 +76,6 @@ namespace osu.Game.Graphics.Containers return true; } - protected override bool OnMouseMove(MouseMoveEvent e) - { - updateHoverExpansion(); - return base.OnMouseMove(e); - } - protected override void OnHoverLost(HoverLostEvent e) { if (hoverExpandEvent != null)