mirror of https://github.com/ppy/osu
Allow `ExpandingContainer` to not auto expand on hover
This commit is contained in:
parent
c55458e49c
commit
58476d5429
|
@ -1,8 +1,6 @@
|
|||
// 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.
|
||||
|
||||
#nullable disable
|
||||
|
||||
using osu.Framework.Bindables;
|
||||
using osu.Framework.Graphics;
|
||||
using osu.Framework.Graphics.Containers;
|
||||
|
@ -26,6 +24,8 @@ public partial class ExpandingContainer : Container, IExpandingContainer
|
|||
/// </summary>
|
||||
protected virtual double HoverExpansionDelay => 0;
|
||||
|
||||
protected virtual bool ExpandOnHover => true;
|
||||
|
||||
protected override Container<Drawable> Content => FillFlow;
|
||||
|
||||
protected FillFlowContainer FillFlow { get; }
|
||||
|
@ -53,7 +53,7 @@ protected ExpandingContainer(float contractedWidth, float expandedWidth)
|
|||
};
|
||||
}
|
||||
|
||||
private ScheduledDelegate hoverExpandEvent;
|
||||
private ScheduledDelegate? hoverExpandEvent;
|
||||
|
||||
protected override void LoadComplete()
|
||||
{
|
||||
|
@ -93,6 +93,9 @@ protected override void OnHoverLost(HoverLostEvent e)
|
|||
|
||||
private void updateHoverExpansion()
|
||||
{
|
||||
if (!ExpandOnHover)
|
||||
return;
|
||||
|
||||
hoverExpandEvent?.Cancel();
|
||||
|
||||
if (IsHovered && !Expanded.Value)
|
||||
|
|
Loading…
Reference in New Issue