From 84102cd51ef34f1cf81b2ae41783807a5f2ebb2d Mon Sep 17 00:00:00 2001 From: Salman Ahmed Date: Thu, 26 Oct 2023 10:46:04 +0300 Subject: [PATCH] Use current date as default value for tournament date text box --- osu.Game.Tournament/Components/DateTextBox.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osu.Game.Tournament/Components/DateTextBox.cs b/osu.Game.Tournament/Components/DateTextBox.cs index d87c091f77..ab643a5cb5 100644 --- a/osu.Game.Tournament/Components/DateTextBox.cs +++ b/osu.Game.Tournament/Components/DateTextBox.cs @@ -10,7 +10,7 @@ namespace osu.Game.Tournament.Components { public partial class DateTextBox : SettingsTextBox { - private readonly BindableWithCurrent current = new BindableWithCurrent(); + private readonly BindableWithCurrent current = new BindableWithCurrent(DateTimeOffset.Now); public new Bindable? Current {