mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 07:47:25 +08:00
33 lines
910 B
C#
33 lines
910 B
C#
// 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 System;
|
|
using osu.Framework.Bindables;
|
|
using osu.Framework.Graphics;
|
|
|
|
namespace osu.Game.Overlays.Settings
|
|
{
|
|
public class SettingsTextBox : SettingsItem<string>
|
|
{
|
|
protected override Drawable CreateControl() => new OutlinedTextBox
|
|
{
|
|
RelativeSizeAxes = Axes.X,
|
|
CommitOnFocusLost = true
|
|
};
|
|
|
|
public override Bindable<string> Current
|
|
{
|
|
get => base.Current;
|
|
set
|
|
{
|
|
if (value.Default == null)
|
|
throw new InvalidOperationException($"Bindable settings of type {nameof(Bindable<string>)} should have a non-null default value.");
|
|
|
|
base.Current = value;
|
|
}
|
|
}
|
|
}
|
|
}
|