|
|
|
@ -11,6 +11,7 @@ using System.Reflection;
|
|
|
|
|
using System.Text; |
|
|
|
|
using System.Text.Json; |
|
|
|
|
using System.Threading.Tasks; |
|
|
|
|
using AsyncAwaitBestPractices; |
|
|
|
|
using Avalonia; |
|
|
|
|
using Avalonia.Controls.Notifications; |
|
|
|
|
using Avalonia.Controls.Primitives; |
|
|
|
@ -215,9 +216,11 @@ public partial class SettingsViewModel : PageViewModelBase
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/// <inheritdoc /> |
|
|
|
|
public override void OnLoaded() |
|
|
|
|
public override async Task OnLoadedAsync() |
|
|
|
|
{ |
|
|
|
|
base.OnLoaded(); |
|
|
|
|
await base.OnLoadedAsync(); |
|
|
|
|
|
|
|
|
|
await notificationService.TryAsync(completionProvider.Setup()); |
|
|
|
|
|
|
|
|
|
UpdateAvailableTagCompletionCsvs(); |
|
|
|
|
} |
|
|
|
|