Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/UniGetUI/App.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -299,16 +299,16 @@ private async Task LoadComponentsAsync()

// Create MainWindow
InitializeMainWindow();
await MainWindow.DoEntryTextAnimationAsync();

IEnumerable<Task> iniTasks =
[
Task.Run(PEInterface.LoadManagers), // Takes most of the time
MainWindow.DoEntryTextAnimationAsync(),
Comment thread
Taron-art marked this conversation as resolved.
Outdated
Task.Run(SetUpWebViewUserDataFolder),
Task.Run(IconDatabase.Instance.LoadFromCacheAsync),
Task.Run(RegisterNotificationService),
Task.Run(LoadGSudo),
Task.Run(InitializeBackgroundAPI),
Task.Run(PEInterface.LoadManagers),
];

// Load essential components
Expand Down
2 changes: 1 addition & 1 deletion src/UniGetUI/MainWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@
VerticalAlignment="Bottom"
Foreground="#08a9c3"
IsIndeterminate="True"
Visibility="Visible" />
Visibility="Collapsed" />
Comment thread
Taron-art marked this conversation as resolved.
</Grid>
</Frame>

Expand Down
Loading