SeasonFinishWindow: Remove async from OnRenewContext() to avoid warnings
This commit is contained in:
@ -19,8 +19,9 @@ namespace Elwig.Windows {
|
||||
SeasonInput.Value = Utils.CurrentLastSeason;
|
||||
}
|
||||
|
||||
protected override async Task OnRenewContext() {
|
||||
protected override Task OnRenewContext() {
|
||||
SeasonInput_ValueChanged(null, null);
|
||||
return Task.CompletedTask;
|
||||
}
|
||||
|
||||
private async void SeasonInput_ValueChanged(object? sender, RoutedEventArgs? evt) {
|
||||
|
Reference in New Issue
Block a user