osu/osu.Game/Graphics/Sprites/TruncatingSpriteText.cs

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

22 lines
623 B
C#
Raw Normal View History

2023-06-09 00:11:17 +00:00
// 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.
using osu.Framework.Graphics.Cursor;
using osu.Framework.Graphics.Sprites;
2023-06-09 00:11:17 +00:00
using osu.Framework.Localisation;
namespace osu.Game.Graphics.Sprites
{
public sealed partial class TruncatingSpriteText : OsuSpriteText, IHasTooltip
{
public LocalisableString TooltipText => Text;
public override bool HandlePositionalInput => IsTruncated;
public TruncatingSpriteText()
{
((SpriteText)this).Truncate = true;
2023-06-09 00:11:17 +00:00
}
}
}