1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-30 02:07:26 +08:00
osu-lazer/osu.Game/Graphics/Containers/ExpandingButtonContainer.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
781 B
C#
Raw Normal View History

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
2018-04-13 17:19:50 +08:00
2022-06-17 15:37:17 +08:00
#nullable disable
2022-02-14 16:51:39 +08:00
namespace osu.Game.Graphics.Containers
2016-11-05 07:27:41 +08:00
{
/// <summary>
/// An <see cref="ExpandingContainer"/> with a long hover expansion delay.
/// </summary>
/// <remarks>
/// Mostly used for buttons with explanatory labels, in which the label would display after a "long hover".
/// </remarks>
2022-11-24 13:32:20 +08:00
public partial class ExpandingButtonContainer : ExpandingContainer
2016-11-05 07:27:41 +08:00
{
protected ExpandingButtonContainer(float contractedWidth, float expandedWidth)
: base(contractedWidth, expandedWidth)
2016-11-05 07:27:41 +08:00
{
}
2018-04-13 17:19:50 +08:00
protected override double HoverExpansionDelay => 400;
2022-01-06 21:56:56 +08:00
}
}