initial commit
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
using Avalonia.Threading;
|
||||
|
||||
namespace LogViewer.Avalonia.Logging;
|
||||
|
||||
public class LogDataStore : Core.LogDataStore
|
||||
{
|
||||
#region Methods
|
||||
|
||||
public override async void AddEntry(Core.LogModel logModel)
|
||||
=> await Dispatcher.UIThread.InvokeAsync(() => base.AddEntry(logModel));
|
||||
|
||||
#endregion
|
||||
}
|
||||
Reference in New Issue
Block a user