// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Game.Graphics.UserInterface; namespace osu.Game.Overlays { /// /// An with a long hover expansion delay for buttons. /// /// /// Mostly used for buttons with explanatory labels, in which the label would display after a "long hover". /// public class ExpandingButtonContainer : ExpandingControlContainer { protected ExpandingButtonContainer(float contractedWidth, float expandedWidth) : base(contractedWidth, expandedWidth) { } protected override double HoverExpansionDelay => 750; } }