Use current date as default value for tournament date text box

This commit is contained in:
Salman Ahmed 2023-10-26 10:46:04 +03:00
parent 5e059a362f
commit 84102cd51e
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ namespace osu.Game.Tournament.Components
{
public partial class DateTextBox : SettingsTextBox
{
private readonly BindableWithCurrent<DateTimeOffset> current = new BindableWithCurrent<DateTimeOffset>();
private readonly BindableWithCurrent<DateTimeOffset> current = new BindableWithCurrent<DateTimeOffset>(DateTimeOffset.Now);
public new Bindable<DateTimeOffset>? Current
{