Fix lambda indentation.

GitOrigin-RevId: 1ed8b602ae26e8ce5768858c918256940cc7afde
This commit is contained in:
levlam 2018-03-07 18:15:43 +03:00
parent 736882a2dc
commit 4daeaa593e
1 changed files with 3 additions and 3 deletions

View File

@ -61,9 +61,9 @@ namespace TdApp
public void Print(String str)
{
var delayTask = Dispatcher.RunAsync(CoreDispatcherPriority.Normal, () =>
{
Items.Insert(0, str.Substring(0, Math.Min(1024, str.Length)));
});
{
Items.Insert(0, str.Substring(0, Math.Min(1024, str.Length)));
});
}
private static Td.Client _client;