vault unlocking WIP

This commit is contained in:
TheXamlGuy
2024-05-03 19:33:32 +01:00
parent 7582f63a68
commit abcff30da6
9 changed files with 92 additions and 43 deletions
+1 -4
View File
@@ -6,8 +6,5 @@ namespace Toolkit.Avalonia;
public class AvaloniaDispatcher :
IDispatcher
{
public async Task InvokeAsync(Action action)
{
await Dispatcher.UIThread.InvokeAsync(action);
}
public async Task Invoke(Action action) => await Dispatcher.UIThread.InvokeAsync(action);
}