2023-06-23 00:37:25 +08:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
2022-03-04 11:25:19 +08:00
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
|
|
|
|
|
|
using osu.Framework.Localisation;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Graphics.UserInterface
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// A slider bar which displays a millisecond time value.
|
|
|
|
|
/// </summary>
|
2023-02-03 00:24:45 +08:00
|
|
|
|
public partial class TimeSlider : RoundedSliderBar<double>
|
2022-03-04 11:25:19 +08:00
|
|
|
|
{
|
2023-05-02 12:24:19 +08:00
|
|
|
|
public override LocalisableString TooltipText => $"{base.TooltipText} ms";
|
2022-03-04 11:25:19 +08:00
|
|
|
|
}
|
|
|
|
|
}
|